mirror of
https://github.com/Luzifer/dns.git
synced 2024-11-09 22:50:06 +00:00
16 lines
339 B
Makefile
16 lines
339 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
|
|
|
|
auto-hook-pre-commit: check_zones
|
|
|
|
.venv:
|
|
virtualenv --python=python3 .venv
|
|
./.venv/bin/pip3 install -r requirements.txt
|
|
|
|
.PHONY: check_zones auto-hook-pre-commit container
|