mirror of
https://github.com/zonemaster/zonemaster-gui.git
synced 2026-06-05 18:42:33 +02:00
in the next release we will introduce the 'gui' image that containt only the frontend. Renaming now to avoid conflict and misunderstood later.
11 lines
350 B
Makefile
11 lines
350 B
Makefile
VERSION = $(shell jq -r '.version' package.json)
|
|
|
|
docker-build:
|
|
docker build --tag zonemaster/all-in-one:local --build-arg version=$(VERSION) -f docker/Dockerfile .
|
|
|
|
docker-tag-version:
|
|
docker tag zonemaster/all-in-one:local zonemaster/all-in-one:$(VERSION)
|
|
|
|
docker-tag-latest:
|
|
docker tag zonemaster/all-in-one:local zonemaster/all-in-one:latest
|
|
|