From c5d8decf2f262aec822498bd1a3ea484fc3dee46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Szulc?= Date: Wed, 8 May 2024 15:47:20 +0200 Subject: [PATCH] Fix makefile --- Makefile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 115ce8b164..5a5acfbe67 100644 --- a/Makefile +++ b/Makefile @@ -52,7 +52,7 @@ build-docker-image: build-snapshot-docker-image: version = $(shell ./get_version.sh show) build-snapshot-docker-image: build-snapshot-package - echo "$version" + echo "$(version)" docker build \ -f docker/Dockerfile-prod \ --build-arg RALPH_VERSION="$(version)" \ @@ -72,10 +72,8 @@ publish-docker-image: build-docker-image publish-docker-snapshot-image: version = $(shell ./get_version.sh show) publish-docker-snapshot-image: build-snapshot-docker-image - echo "$version" - -# docker push $(DOCKER_REPO_NAME)/ralph:$(version) -# docker push $(DOCKER_REPO_NAME)/ralph-static-nginx:$(version) + docker push $(DOCKER_REPO_NAME)/ralph:$(version) + docker push $(DOCKER_REPO_NAME)/ralph-static-nginx:$(version) install-js: npm install