docker/tsig/Makefile

14 lines
205 B
Makefile
Raw Normal View History

2021-01-09 18:06:20 +00:00
VERSION=latest
IMAGE=tsig
REGISTRY=registry.0xace.cc
.PHONY: build push all
build:
docker build -t $(REGISTRY)/$(IMAGE):$(VERSION) .
push:
docker push $(REGISTRY)/$(IMAGE):$(VERSION)
all: build push