Files
2023-02-28 12:02:12 +01:00

12 lines
198 B
Makefile

NAME = rdns-authoritative
USER = razian
REGISTRY = git.rznet.fr
all: build push
build:
docker build . -t ${REGISTRY}/${USER}/${NAME}:latest
push:
docker push ${REGISTRY}/${USER}/${NAME}:latest