From 96374c6697013d3e39992cbc9a97815dd1ecf9d4 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Tue, 6 Feb 2018 23:26:27 +0100 Subject: [PATCH] Work around older alpine version Signed-off-by: Knut Ahlers --- .repo-runner.yaml | 3 +-- Makefile | 4 ++++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.repo-runner.yaml b/.repo-runner.yaml index ce7be9a..5352c83 100644 --- a/.repo-runner.yaml +++ b/.repo-runner.yaml @@ -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 diff --git a/Makefile b/Makefile index 3f567ab..4fffc94 100644 --- a/Makefile +++ b/Makefile @@ -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