2021-05-30 17:52:25 +02:00
|
|
|
FROM python:3.9-buster as python
|
2019-11-26 14:24:53 +01:00
|
|
|
|
|
|
|
RUN apt update \
|
2020-06-20 03:52:47 +02:00
|
|
|
&& apt install -y --no-install-recommends lintian rsync sudo docker.io \
|
2019-11-26 15:14:15 +01:00
|
|
|
&& pip3 install pycodestyle coverage \
|
2019-11-26 14:24:53 +01:00
|
|
|
&& rm -rf /var/cache/apt
|