From c8689aaefcd822a3adb55eea767f36808cbc7cb6 Mon Sep 17 00:00:00 2001 From: Nicholas Dille Date: Thu, 3 Aug 2023 12:43:57 +0200 Subject: [PATCH] Connect container images to repository --- make/tool.mk | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/make/tool.mk b/make/tool.mk index 021e406bf3..074eedf086 100644 --- a/make/tool.mk +++ b/make/tool.mk @@ -73,8 +73,7 @@ base: \ --platform $${ARCHS} \ --cache-from $(REGISTRY)/$(REPOSITORY_PREFIX)base:$(DOCKER_TAG) \ --tag $(REGISTRY)/$(REPOSITORY_PREFIX)base:$(DOCKER_TAG) \ - --attest=type=provenance \ - --attest=type=sbom \ + --provenance=false \ --push \ --progress plain \ >@base/build.log 2>&1; then \ @@ -117,8 +116,7 @@ $(ALL_TOOLS_RAW):%: \ --cache-from $(REGISTRY)/$(REPOSITORY_PREFIX)$*:$(DOCKER_TAG) \ --tag $(REGISTRY)/$(REPOSITORY_PREFIX)$*:$(DOCKER_TAG) \ $${EXTRA_DOCKER_TAG} \ - --attest=type=provenance \ - --attest=type=sbom \ + --provenance=false \ --metadata-file $(TOOLS_DIR)/$@/build-metadata.json \ --push="$${PUSH}" \ --progress plain \