You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// If provenance not specified but BuildKit version compatible for
173
-
// attestation, disable provenance anyway. Also needs to make sure user
172
+
// if provenance not specified and BuildKit version compatible for
173
+
// attestation, set default provenance. Also needs to make sure user
174
174
// doesn't want to explicitly load the image to docker.
175
-
// While this action successfully pushes OCI compliant images to
176
-
// well-known registries, some runtimes (e.g. Google Cloud Run and AWS
177
-
// Lambda) are not able to pull resulting image from their own registry...
178
-
// See also https://github.com/docker/buildx/issues/1533
179
-
args.push('--provenance','false');
175
+
if(fromPayload('repository.private')!==false){
176
+
// if this is a private repository, we set the default provenance
177
+
// attributes being set in buildx: https://github.com/docker/buildx/blob/fb27e3f919dcbf614d7126b10c2bc2d0b1927eb6/build/build.go#L603
0 commit comments