1
0
Fork 0
mirror of https://github.com/Luzifer/dns.git synced 2024-12-22 19:01:20 +00:00

Improve check call

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2018-02-06 23:00:17 +01:00
parent 1244d63733
commit 08f66fbdd1
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E

View file

@ -4,9 +4,13 @@ container:
docker build --no-cache --pull -t luzifer/dns .
docker push luzifer/dns
check_zones: .venv
./.venv/bin/python3 checkZonefile.py
auto-hook-pre-commit: check_zones
.venv:
virtualenv --python=python3 .venv
./.venv/bin/pip3 install -r requirements.txt
auto-hook-pre-commit: .venv
./.venv/bin/python3 checkZonefile.py
.PHONY: check_zones auto-hook-pre-commit container