diff --git a/deployments/container/Makefile b/deployments/container/Makefile index 75924965..af667882 100644 --- a/deployments/container/Makefile +++ b/deployments/container/Makefile @@ -60,7 +60,6 @@ endif build: DOCKER_BUILDKIT=1 \ $(DOCKER) $(BUILDX) build --pull \ - --provenance=false --sbom=false \ $(DOCKER_BUILD_OPTIONS) \ $(DOCKER_BUILD_PLATFORM_OPTIONS) \ --tag $(IMAGE) \ diff --git a/deployments/container/multi-arch.mk b/deployments/container/multi-arch.mk index fdb3426a..f10750e8 100644 --- a/deployments/container/multi-arch.mk +++ b/deployments/container/multi-arch.mk @@ -13,5 +13,5 @@ # limitations under the License. PUSH_ON_BUILD ?= false -DOCKER_BUILD_OPTIONS = --output=type=image,push=$(PUSH_ON_BUILD) +DOCKER_BUILD_OPTIONS = --output=type=image,push=$(PUSH_ON_BUILD) --provenance=false --sbom=false DOCKER_BUILD_PLATFORM_OPTIONS = --platform=linux/amd64,linux/arm64