zonemaster-gui/Makefile
Michael Timbert 074a0ea8bf Change docker image name from 'gui' to 'all-in-one'
in the next release we will introduce the 'gui' image
that containt only the frontend.
Renaming now to avoid conflict and misunderstood later.
2026-05-28 08:43:09 +02:00

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