ium_434760/Dockerfile

12 lines
275 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 23:06:50 +02:00
COPY ["Zadanie 1.py", "."]
2021-04-25 17:39:38 +02:00
COPY ["stats.py", "."]
2021-04-29 23:45:22 +02:00
COPY ["train.py", "."]
COPY ["evaluate.py", "."]