9 lines
204 B
Docker
9 lines
204 B
Docker
|
FROM python:3
|
||
|
|
||
|
RUN apt update -y && apt install -y make
|
||
|
RUN apt install -y git
|
||
|
RUN apt install -y gcc
|
||
|
RUN gcc --version
|
||
|
RUN apt install -y build-essential
|
||
|
RUN apt install -y moreutils
|
||
|
RUN python --version
|