From 32308f2ad854af33ffbba3147d8591eea2a98fac Mon Sep 17 00:00:00 2001 From: emil User Date: Tue, 14 Jul 2026 00:47:04 +0000 Subject: [PATCH] DEVX-137: fix: disable Docker buildx provenance attestation --- src/devx/tools/build_image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devx/tools/build_image.py b/src/devx/tools/build_image.py index f1ea7ae..f820e02 100644 --- a/src/devx/tools/build_image.py +++ b/src/devx/tools/build_image.py @@ -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: