1
0
mirror of https://github.com/Luzifer/dns.git synced 2024-09-19 23:32:56 +00:00
dns/Makefile
Knut Ahlers 97295bd34c
Remove auto-hook
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-02-06 23:08:29 +01:00

15 lines
283 B
Makefile

default: container
container:
docker build --no-cache --pull -t luzifer/dns .
docker push luzifer/dns
check_zones: .venv
./.venv/bin/python3 checkZonefile.py
.venv:
virtualenv --python=python3 .venv
./.venv/bin/pip3 install -r requirements.txt
.PHONY: check_zones container