diff --git a/Makefile b/Makefile index f4a08393b..d6811ff87 100644 --- a/Makefile +++ b/Makefile @@ -206,7 +206,7 @@ build/%: ## build the latest image # End repo with exactly one trailing slash, unless it is empty REPO=$$(echo "$(REPO)" | sed 's:/*$$:/:' | sed 's:^\s*/*\s*$$::') &&\ IMAGE_NAME="$${REPO}$(notdir $@):$(TAG)" && \ - DOCKER_BUILDKIT=0 docker build $(DARGS) --rm --force-rm -t $$IMAGE_NAME ./output/$(notdir $@) && \ + docker build --progress=plain --no-cache --output=type=registry $(DARGS) --rm --force-rm -t $$IMAGE_NAME ./output/$(notdir $@) && \ echo -n "Built image $$IMAGE_NAME of size: " && \ docker images $$IMAGE_NAME --format "{{.Size}}" && \ echo "full_image_name=$$IMAGE_NAME" >> $(GITHUB_OUTPUT) && \