Add python-pip installation

This commit is contained in:
Gabriela Pałka 2020-04-03 17:03:40 +02:00
parent d7abdc5d96
commit cb69c08ef2

View File

@ -3,7 +3,8 @@ FROM ubuntu:latest
RUN apt update -y && apt install -y make
RUN apt install -y git
RUN apt install -y gcc
RUN apt install -y python3
RUN apt install -y python3 \
python-pip
RUN python3 -m pip install -U pip
RUN python3 -m pip install -U matplotlib
RUN gcc --version