Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/cmd/builder/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ func parseBuildContextFromOCILayout(name, path string) ([]string, error) {

var digest string
for _, manifest := range ociIndex.Manifests {
if images.IsManifestType(manifest.MediaType) {
if images.IsManifestType(manifest.MediaType) || images.IsIndexType(manifest.MediaType) {
digest = manifest.Digest.String()
}
}
Expand Down
Loading