From e2040a77a86d508ff8d7f1554140e97da90dd1bd Mon Sep 17 00:00:00 2001 From: Shubham Chaudhary Date: Tue, 20 Jun 2023 11:54:01 +0530 Subject: [PATCH] fixing the docker buildx progess argument (#202) Signed-off-by: Shubham Chaudhary --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0d5b7a92..e9353893 100644 --- a/Makefile +++ b/Makefile @@ -52,14 +52,14 @@ build-chaos-runner: @echo "-------------------------" @echo "--> Build chaos-runner image" @echo "-------------------------" - @docker buildx build --file build/Dockerfile --progress plane --no-cache --platform linux/arm64,linux/amd64 --tag $(DOCKER_REGISTRY)/$(DOCKER_REPO)/$(DOCKER_IMAGE):$(DOCKER_TAG) . + @docker buildx build --file build/Dockerfile --progress plain --no-cache --platform linux/arm64,linux/amd64 --tag $(DOCKER_REGISTRY)/$(DOCKER_REPO)/$(DOCKER_IMAGE):$(DOCKER_TAG) . .PHONY: push-chaos-runner push-chaos-runner: @echo "------------------------------" @echo "--> Pushing image" @echo "------------------------------" - @docker buildx build --file build/Dockerfile --progress plane --no-cache --push --platform linux/arm64,linux/amd64 --tag $(DOCKER_REGISTRY)/$(DOCKER_REPO)/$(DOCKER_IMAGE):$(DOCKER_TAG) . + @docker buildx build --file build/Dockerfile --progress plain --no-cache --push --platform linux/arm64,linux/amd64 --tag $(DOCKER_REGISTRY)/$(DOCKER_REPO)/$(DOCKER_IMAGE):$(DOCKER_TAG) . .PHONY: build-amd64 build-amd64: