From 685f7846915e953441b4a956ea04447dd5dd6d18 Mon Sep 17 00:00:00 2001 From: rjshrjndrn Date: Thu, 17 Apr 2025 18:39:50 +0200 Subject: [PATCH] fix(make): distro Signed-off-by: rjshrjndrn --- backend/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/Makefile b/backend/Makefile index 6486f364a..cdac74142 100644 --- a/backend/Makefile +++ b/backend/Makefile @@ -1,4 +1,4 @@ -distro ?= "foss" # ee to build ee +distro ?= foss # ee to build ee app ?= "" # app name, default all arch ?= "amd64" # default amd64 docker_repo ?= "public.ecr.aws/p1t3u8a3" @@ -14,7 +14,7 @@ help: ## Prints help for targets with comments .PHONY: build build: ## Build the backend. ee=true for ee build. app=app name for only one app. Default build all apps. - IMAGE_TAG=$(image_tag) DOCKER_BUILD_ARGS=$(docker_build_args) DOCKER_REPO=$(docker_repo) ARCH=$(arch) DOCKER_RUNTIME=$(docker_runtime) bash build.sh $(ee) $(app) + IMAGE_TAG=$(image_tag) DOCKER_BUILD_ARGS=$(docker_build_args) DOCKER_REPO=$(docker_repo) ARCH=$(arch) DOCKER_RUNTIME=$(docker_runtime) bash build.sh $(distro) $(app) ##@ Local Dev