mirror of https://gitlab.crans.org/bde/nk20
9 lines
215 B
Docker
9 lines
215 B
Docker
|
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
|