ium_434765/Dockerfile

16 lines
377 B
Docker
Raw Normal View History

2021-04-14 20:25:53 +02:00
FROM ubuntu:latest
2021-04-14 21:02:47 +02:00
RUN apt clean
2021-04-14 20:25:53 +02:00
RUN apt update
RUN apt install -y python3
RUN apt install -y python3-pip
RUN apt install -y unzip
RUN pip3 install pandas
RUN pip3 install kaggle
2021-04-24 22:23:04 +02:00
RUN pip3 install tensorflow
2021-05-17 20:09:25 +02:00
RUN pip3 install sklearn
2021-05-20 19:50:46 +02:00
RUN pip3 install matplotlib
2021-05-22 17:15:02 +02:00
RUN pip3 install mlflow
2021-05-17 19:27:39 +02:00
COPY ./data_dev ./
2021-05-17 22:53:32 +02:00
COPY ./evaluate_network.py ./
2021-04-14 21:07:27 +02:00
RUN mkdir /.kaggle
RUN chmod -R 777 /.kaggle