From 2795f69249494903eb22357358820991daf226d1 Mon Sep 17 00:00:00 2001 From: Gabriel Adrian Samfira Date: Thu, 8 Aug 2024 10:07:43 +0000 Subject: [PATCH] Fix makefile mount folder This change fixes the path to the build folder when building the code. Signed-off-by: Gabriel Adrian Samfira --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1a01110..6a5885e 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ build-static: @echo Building docker build --tag $(IMAGE_TAG) . mkdir -p build - docker run --rm -e GARM_PROVIDER_NAME=$(GARM_PROVIDER_NAME) -e USER_ID=$(USER_ID) -e USER_GROUP=$(USER_GROUP) -v $(PWD)/build:/build/output:z -v $(PWD):/build/garm-provider-azure:z $(IMAGE_TAG) /build-static.sh + docker run --rm -e GARM_PROVIDER_NAME=$(GARM_PROVIDER_NAME) -e USER_ID=$(USER_ID) -e USER_GROUP=$(USER_GROUP) -v $(PWD)/build:/build/output:z -v $(PWD):/build/$(GARM_PROVIDER_NAME):z $(IMAGE_TAG) /build-static.sh @echo Binaries are available in $(PWD)/build test: install-lint-deps verify go-test