From 81d4e5b255e01f8f080b761e56e564768a3c12da Mon Sep 17 00:00:00 2001 From: aahel Date: Thu, 22 Feb 2024 22:35:38 +0530 Subject: [PATCH] fix makefile --- consul-lambda/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consul-lambda/Makefile b/consul-lambda/Makefile index 05b671b..497dff3 100644 --- a/consul-lambda/Makefile +++ b/consul-lambda/Makefile @@ -34,7 +34,7 @@ dev: dist # So we enable build-kit in the individual targets. # We can set this here one time, once we're off CircleCI. # export DOCKER_BUILDKIT=1 -BUILD_ARGS = BIN_NAME=consul-lambda-registrator VERSION=$(VERSION) GIT_COMMIT=$(GIT_COMMIT) GIT_DIRTY=$(GIT_DIRTY) +BUILD_ARGS = BIN_NAME=consul-lambda-registrator VERSION=$(VERSION) GIT_COMMIT=$(GIT_COMMIT) GIT_DIRTY=$(GIT_DIRTY) ARCH=$(ARCH) TAG ?= $(BIN_NAME)/$(TARGET):$(VERSION) BA_FLAGS = $(addprefix --build-arg=,$(BUILD_ARGS)) FLAGS = --target $(TARGET) --platform $(PLATFORM) --tag $(TAG) $(BA_FLAGS)