2019-11-26 14:24:53 +01:00
|
|
|
FROM python:3.8-buster as python
|
|
|
|
|
|
|
|
RUN apt update \
|
2019-11-26 15:14:15 +01:00
|
|
|
&& apt install -y --no-install-recommends lintian rsync sudo \
|
|
|
|
&& pip3 install pycodestyle coverage \
|
2019-11-26 14:24:53 +01:00
|
|
|
&& rm -rf /var/cache/apt
|