ium_434760/Dockerfile
2021-04-11 23:11:21 +02:00

10 lines
226 B
Docker

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
COPY ["Zadanie 1.py", "."]
COPY ["stats.py", "."]