ium_434760/Dockerfile

9 lines
203 B
Docker
Raw Normal View History

2021-04-11 17:20:04 +02:00
FROM ubuntu:latest
RUN apt update && apt install -y python3.8 && apt install -y python3-pip
WORKDIR /app
COPY ["requirements.txt", "./"]
RUN pip3 install -r requirements.txt
2021-04-11 22:19:45 +02:00
COPY ["Zadanie 1.py", "."]