We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 74350be + 1bbd39c commit 6f3f25bCopy full SHA for 6f3f25b
build/release.sh
@@ -71,7 +71,7 @@ done
71
for arch in "${!arches[@]}"; do
72
GOARCH="$arch" GO_CGO_ENABLED="0" OUTPUT_NAME_WITH_ARCH="true" build/build.sh
73
arch_specific_image="${image_name}-${arch}:${VERSION}"
74
- docker buildx build --platform "linux/${arch}" --build-arg VERSION="$VERSION" -f deploy/Dockerfile -t "$arch_specific_image" --progress plain --push .
+ docker buildx build --platform "linux/${arch}" --provenance=false --build-arg VERSION="$VERSION" -f deploy/Dockerfile -t "$arch_specific_image" --progress plain --push .
75
docker manifest create --amend "$final_image" "$arch_specific_image"
76
docker manifest annotate --os=linux --arch="$arch" "$final_image" "$arch_specific_image"
77
done
0 commit comments