10 lines
276 B
Docker
10 lines
276 B
Docker
|
FROM python:3.10.2-slim
|
||
|
|
||
|
RUN apt update \
|
||
|
&& apt install -y --no-install-recommends apt-utils git gcc build-essential \
|
||
|
&& pip install --no-cache-dir autopep8 flake8 pytest \
|
||
|
&& apt-get autoremove -y \
|
||
|
&& apt-get clean -y \
|
||
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|