From 18cfc40982d22adde680ac215eda0e7764891e75 Mon Sep 17 00:00:00 2001 From: Prashant Shahi Date: Wed, 23 Mar 2022 01:25:13 +0530 Subject: [PATCH] =?UTF-8?q?chore(Makefile):=20=F0=9F=94=A7=20include=20mis?= =?UTF-8?q?sed=20slash=20and=20formatting?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Prashant Shahi --- Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 40f697ae09..bf2b038992 100644 --- a/Makefile +++ b/Makefile @@ -69,8 +69,9 @@ build-push-query-service: @echo "--> Building and pushing query-service docker image" @echo "------------------" @cd $(QUERY_SERVICE_DIRECTORY) && \ - docker buildx build --file Dockerfile --progress plane --no-cache --push --platform linux/arm64,linux/amd64 - --build-arg LD_FLAGS=$(LD_FLAGS) --tag $(REPONAME)/$(QUERY_SERVICE_DOCKER_IMAGE):$(DOCKER_TAG) . + docker buildx build --file Dockerfile --progress plane --no-cache \ + --push --platform linux/arm64,linux/amd64 --build-arg LD_FLAGS=$(LD_FLAGS) \ + --tag $(REPONAME)/$(QUERY_SERVICE_DOCKER_IMAGE):$(DOCKER_TAG) . # Steps to build and push docker image of flattener .PHONY: build-flattener-amd64 build-push-flattener @@ -89,7 +90,8 @@ build-push-flattener: @echo "--> Building and pushing flattener docker image" @echo "------------------" @cd $(FLATTENER_DIRECTORY) && \ - docker buildx build --file Dockerfile --progress plane --no-cache --push --platform linux/arm64,linux/amd64 + docker buildx build --file Dockerfile --progress plane \ + --no-cache --push --platform linux/arm64,linux/amd64 \ --tag $(REPONAME)/$(FLATTERNER_DOCKER_IMAGE):$(DOCKER_TAG) . dev-setup: