6 lines
194 B
Docker
6 lines
194 B
Docker
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
|