7 lines
124 B
Docker
7 lines
124 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt update -y
|
|
RUN apt install -y python-pip
|
|
RUN pip install matplotlib
|
|
RUN apt install -y python-tk
|