ium_444421/Dockerfile

18 lines
375 B
Docker
Raw Normal View History

2022-04-29 19:17:50 +02:00
FROM ubuntu:latest
RUN apt update && apt install -y python3-pip
RUN pip3 install pandas
RUN pip3 install sklearn
RUN pip3 install seaborn
RUN pip3 install ipython
RUN pip3 install torch
RUN pip3 install numpy
2022-05-06 09:53:37 +02:00
RUN pip3 install sacred
2022-05-06 10:06:52 +02:00
RUN pip3 install GitPython
2022-05-08 15:53:03 +02:00
RUN pip3 install pymongo
2022-04-29 19:17:50 +02:00
WORKDIR /app
2022-04-29 19:53:30 +02:00
COPY ./training.py ./
2022-05-06 09:53:37 +02:00
COPY ./training_sacred.py ./
2022-04-29 20:55:27 +02:00
COPY ./evaluation.py ./