From 9543590bc110d14b09de62cee35b3008a39e603b Mon Sep 17 00:00:00 2001 From: Andrey Smirnov Date: Wed, 11 Jan 2023 20:38:46 +0400 Subject: [PATCH] chore: disable provenance in buildx For some reason the builds fail to push the image to ghcr.io. I can't reproduce that locally pushing to my username at ghcr.io, but this provenance thing is the only thing I can think as a big change in buildkit 0.11.0/buildx 0.10.0, so trying to disable it. Signed-off-by: Andrey Smirnov --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index e88e608b4..7287354f2 100644 --- a/Makefile +++ b/Makefile @@ -18,6 +18,7 @@ PLATFORM ?= linux/amd64,linux/arm64 PROGRESS ?= auto PUSH ?= false COMMON_ARGS := --file=Pkgfile +COMMON_ARGS += --provenance=false COMMON_ARGS += --progress=$(PROGRESS) COMMON_ARGS += --platform=$(PLATFORM) COMMON_ARGS += --build-arg=http_proxy=$(http_proxy)