2020-04-19 21:09:00 +02:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
|
|
|
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
|
2020-04-19 21:40:01 +02:00
|
|
|
RUN apt-get update && apt-get install -y python3
|
|
|
|
RUN apt-get update && apt-get install -y python3-pip
|
2020-04-19 21:43:50 +02:00
|
|
|
RUN pip3 install matplotlib
|
2020-04-19 21:26:28 +02:00
|
|
|
|
2020-04-19 21:09:00 +02:00
|
|
|
|