ium_434760/Dockerfile
2021-05-24 00:52:24 +02:00

13 lines
299 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", "."]
COPY ["train.py", "."]
COPY ["evaluate.py", "."]
COPY ["MLProject", "."]