Skip to content

Commit

Permalink
fix getArchiveTags error when using containerd
Browse files Browse the repository at this point in the history
  • Loading branch information
ktKongTong committed Jan 14, 2023
1 parent 8433252 commit 2329b70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/build/nodeimage/internal/container/docker/archive.go
Expand Up @@ -76,7 +76,7 @@ func GetArchiveTags(path string) ([]string, error) {
}
}
} else if hdr.Name == "manifest.json" {
manifest, err := parseManifest(b)
manifest, err := parseDockerV1Manifest(b)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 2329b70

Please sign in to comment.