From ac5def9979628d33bc39df56585ec948359d07c4 Mon Sep 17 00:00:00 2001 From: amercader Date: Thu, 12 Dec 2024 11:29:58 +0100 Subject: [PATCH] Fix arg in Makefile --- solr-9/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solr-9/Makefile b/solr-9/Makefile index e87a952..09fcc9a 100644 --- a/solr-9/Makefile +++ b/solr-9/Makefile @@ -14,7 +14,7 @@ help: build: ## Build a Solr 9 image for a specific CKAN version, `make build CKAN_VERSION=2.11 CKAN_BRANCH=dev-v2.11` - docker build -t $(TAG_NAME) -t $(ALT_TAG_NAME) --build-arg SOLR_VERSION=$(SOLR_VERSION) --build-arg SOLR_VERSION=$(SOLR_VERSION) . + docker build -t $(TAG_NAME) -t $(ALT_TAG_NAME) --build-arg CKAN_BRANCH=$(CKAN_BRANCH) --build-arg SOLR_VERSION=$(SOLR_VERSION) . docker build -t $(TAG_NAME_SPATIAL) -t $(ALT_TAG_NAME_SPATIAL) -f Dockerfile.spatial --build-arg CKAN_BRANCH=$(CKAN_BRANCH) --build-arg SOLR_VERSION=$(SOLR_VERSION) . push: ## Push an image to the Docker registry, `make push CKAN_VERSION=2.9` (default is 2.10)