ium_434760/Dockerfile
Anna Nowak ced9c9dc25 :<
2021-05-24 01:40:00 +02:00

15 lines
327 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", "."]
COPY ["try_model.py", "."]