ium_430705/Dockerfile

16 lines
307 B
Docker
Raw Permalink Normal View History

2021-04-08 20:58:08 +02:00
FROM ubuntu:latest
RUN apt-get update
RUN apt-get install -y python3-pip
RUN apt-get install -y figlet
WORKDIR /app
COPY ./requirements.txt ./
2021-04-08 21:20:22 +02:00
COPY ./script2.py ./
2021-04-08 20:58:08 +02:00
2021-04-08 22:45:13 +02:00
RUN pip3 install -r ./requirements.txt
2021-04-21 21:54:51 +02:00
CMD python3 script2.py
2021-05-07 22:36:28 +02:00
CMD python3 lab05.py
2021-05-10 21:10:41 +02:00
RUN pip3 install gast==0.2.2
CMD python3 lab07_sacred.py