2020-04-03 18:52:06 +02:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
2020-04-03 19:14:36 +02:00
|
|
|
ENV TZ=Europe/Minsk
|
|
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
2020-04-03 18:54:31 +02:00
|
|
|
RUN apt update -y
|
|
|
|
RUN apt install -y python-pip
|
2020-04-03 18:52:06 +02:00
|
|
|
RUN pip install matplotlib
|
2020-04-03 18:54:31 +02:00
|
|
|
RUN apt install -y python-tk
|