From a703f9814b75901bacdbc924f7364e7e9e6695b4 Mon Sep 17 00:00:00 2001 From: Julien Pivotto Date: Tue, 6 Sep 2022 14:30:22 +0200 Subject: [PATCH] Go back to docker build (#11263) Docker build alone works with tags, where buildx did not seem to tag properly. Signed-off-by: Julien Pivotto --- Makefile.common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.common b/Makefile.common index c9bc1ce37c..ada0008a05 100644 --- a/Makefile.common +++ b/Makefile.common @@ -205,7 +205,7 @@ common-tarball: promu .PHONY: common-docker $(BUILD_DOCKER_ARCHS) common-docker: $(BUILD_DOCKER_ARCHS) $(BUILD_DOCKER_ARCHS): common-docker-%: - docker buildx build -t "$(DOCKER_REPO)/$(DOCKER_IMAGE_NAME)-linux-$*:$(DOCKER_IMAGE_TAG)" \ + docker build -t "$(DOCKER_REPO)/$(DOCKER_IMAGE_NAME)-linux-$*:$(DOCKER_IMAGE_TAG)" \ -f $(DOCKERFILE_PATH) \ --build-arg ARCH="$*" \ --build-arg OS="linux" \