Files
docker-znc/Makefile

8 lines
93 B
Makefile

build:
docker build -t ${USER}/znc .
push: build
docker push ${USER}/znc
.PHONY: default