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

Work around older alpine version

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2018-02-06 23:26:27 +01:00
parent 97295bd34c
commit 96374c6697
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E
2 changed files with 5 additions and 2 deletions

View file

@ -3,5 +3,4 @@
image: quay.io/luzifer/repo-runner-image
commands:
- apk --no-cache add make py3-virtualenv
- make check_zones container
- make alpine-prereq check_zones container

View file

@ -11,4 +11,8 @@ check_zones: .venv
virtualenv --python=python3 .venv
./.venv/bin/pip3 install -r requirements.txt
alpine-prereq:
apk --no-cache add make python3
pip3 install virtualenv
.PHONY: check_zones container