From 0636d8428686544537d3fe09dbd6a503cb25ba87 Mon Sep 17 00:00:00 2001 From: Otthorn Date: Mon, 22 Feb 2021 00:17:49 +0100 Subject: [PATCH] Add docker image for tox linting to be used in CI --- docker_ci/Dockerfile.tox | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 docker_ci/Dockerfile.tox diff --git a/docker_ci/Dockerfile.tox b/docker_ci/Dockerfile.tox new file mode 100644 index 00000000..ea7f7685 --- /dev/null +++ b/docker_ci/Dockerfile.tox @@ -0,0 +1,8 @@ +FROM alpine:3.13 + +LABEL maintainer="otthorn@crans.org" +LABEL description="Alpine image with tox \ +installed for linting purposes" + +RUN apk --no-cache add py3-pip=20.3.4-r0 +RUN pip install --no-cache-dir tox==3.22.0