Skip to content

Commit

Permalink
Fix makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
hipek8 committed May 8, 2024
1 parent f64cd8e commit c5d8dec
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)" \
Expand All @@ -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
Expand Down

0 comments on commit c5d8dec

Please sign in to comment.