From 702cb75f9a3863fa0cdcfce10536001a7ae4159f Mon Sep 17 00:00:00 2001 From: Martin Weise <martin.weise@tuwien.ac.at> Date: Wed, 16 Apr 2025 09:05:21 +0200 Subject: [PATCH] Wrong interoplation Signed-off-by: Martin Weise <martin.weise@tuwien.ac.at> --- make/build.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/make/build.mk b/make/build.mk index 741656ab9c..a18416a76f 100644 --- a/make/build.mk +++ b/make/build.mk @@ -2,9 +2,9 @@ .PHONY: build-images build-images: ## Build Docker images. - docker build --platform=$PLATFORM --network=host -t dbrepo-core:build --target build ./lib/java/dbrepo-core - docker build --platform=$PLATFORM --network=host -t dbrepo-data-service:build --target build dbrepo-data-service - docker build --platform=$PLATFORM --network=host -t dbrepo-metadata-service:build --target build dbrepo-metadata-service + docker build --platform=$(PLATFORM) --network=host -t dbrepo-core:build --target build ./lib/java/dbrepo-core + docker build --platform=$(PLATFORM) --network=host -t dbrepo-data-service:build --target build dbrepo-data-service + docker build --platform=$(PLATFORM) --network=host -t dbrepo-metadata-service:build --target build dbrepo-metadata-service docker compose build --parallel .PHONY: build-data-service -- GitLab