ium_434765/Dockerfile
Karolina Oparczyk 19be7ca6eb
All checks were successful
s434765-training/pipeline/head This commit looks good
sacred
2021-05-20 22:14:33 +02:00

19 lines
448 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 pymongo
RUN pip3 install sacred
RUN pip3 install GitPython
COPY ./data_train ./
COPY ./data_dev ./
COPY ./neural_network.sh ./
COPY ./neural_network.py ./
RUN mkdir /.kaggle
RUN chmod -R 777 /.kaggle