11 lines
291 B
Docker
11 lines
291 B
Docker
|
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
|
||
|
RUN apt-get update && apt-get install -y python3
|
||
|
RUN apt-get update && apt-get install -y python3-pip
|
||
|
RUN pip3 install matplotlib
|