DEVX-137: fix: disable Docker buildx provenance attestation
Post-merge / detect-and-configure (push) Successful in 14s
Post-merge / release-and-maintain (push) Successful in 1m3s

This commit was merged in pull request #208.
This commit is contained in:
2026-07-14 00:47:04 +00:00
parent 5468a6f4af
commit 32308f2ad8
+1 -1
View File
@@ -162,7 +162,7 @@ def build_image(
return False
full_tags = [build_full_tag(registry, spec.name, t) for t in spec.tags]
cmd = ["docker", "build"]
cmd = ["docker", "build", "--provenance=false"]
if pull:
cmd.append("--pull")
for ft in full_tags: