ium_434765/Dockerfile
Karolina Oparczyk bd6d30ebad
Some checks failed
s434765-evaluation/pipeline/head This commit looks good
s434765-training/pipeline/head There was a failure building this commit
mlflow save model
2021-05-22 17:15:02 +02:00

16 lines
377 B
Docker

FROM ubuntu:latest
RUN apt clean
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
RUN pip3 install tensorflow
RUN pip3 install sklearn
RUN pip3 install matplotlib
RUN pip3 install mlflow
COPY ./data_dev ./
COPY ./evaluate_network.py ./
RUN mkdir /.kaggle
RUN chmod -R 777 /.kaggle