ium_434684/Dockerfile

24 lines
370 B
Docker
Raw Normal View History

2021-04-11 11:39:22 +02:00
FROM ubuntu:20.04
2021-04-11 12:24:29 +02:00
RUN apt update >>/dev/null
RUN apt install -y python3-pip >>/dev/null
2021-04-11 11:39:22 +02:00
WORKDIR /app
2021-04-11 12:24:29 +02:00
COPY . ./
RUN chmod +x run.sh
RUN pip3 install kaggle
RUN pip3 install sklearn
RUN pip3 install pandas
RUN pip3 install seaborn
RUN pip3 install matplotlib
2021-05-02 17:47:23 +02:00
RUN pip3 install --no-cache-dir tensorflow
2021-05-16 11:55:28 +02:00
RUN pip3 install sacred
RUN pip3 install pymongo
2021-04-11 11:39:22 +02:00
2021-04-11 12:24:29 +02:00
CMD ./run.sh
2021-05-15 15:11:54 +02:00