Skip to content

Commit

Permalink
fix index/image digest clash
Browse files Browse the repository at this point in the history
  • Loading branch information
dskiff committed Apr 25, 2024
1 parent 09e7579 commit 50a1ce8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/build/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func getBaseImage(ctx BuildContext, baseRef string, platform Platform, keychain
if err != nil {
return nil, fmt.Errorf("failed to retrieve base image digest: %w", err)
}
log.Println("Using base image:", ref.Name()+"@"+baseDigest.String())
log.Println("Using base image:", ref.Context().Name()+"@"+baseDigest.String())

return getImageForPlatform(index, platform)
}
Expand Down

0 comments on commit 50a1ce8

Please sign in to comment.