7 lines
194 B
Text
7 lines
194 B
Text
|
FROM python:3.8-buster as python
|
||
|
|
||
|
RUN apt update \
|
||
|
&& apt install -y --no-install-recommends \
|
||
|
python3-coverage python3-pycodestyle lintian rsync sudo \
|
||
|
&& rm -rf /var/cache/apt
|