12 lines
186 B
Makefile
12 lines
186 B
Makefile
NAME = rdns
|
|
USER = tchivert
|
|
REGISTRY = git.rznet.fr
|
|
|
|
all: build push
|
|
|
|
build:
|
|
docker build . -t ${REGISTRY}/${USER}/${NAME}:latest
|
|
|
|
push:
|
|
docker push ${REGISTRY}/${USER}/${NAME}:latest
|