ium_434732/Dockerfile
s434732 2cc45064d3
All checks were successful
s434732-evaluation/pipeline/head This commit looks good
s434732-training/pipeline/head This commit looks good
Scared
2021-05-15 17:30:40 +02:00

26 lines
672 B
Docker

FROM ubuntu:latest
RUN apt update && apt install -y python3 && apt install -y nano
RUN apt update && apt install python3-pip -y
RUN pip3 install kaggle && pip3 install pandas && pip3 install scikit-learn && pip3 install matplotlib
RUN pip3 install torch torchvision torchaudio
RUN apt install -y curl
RUN pip3 install --user wget
RUN pip3 install sacred && pip3 install GitPython && pip3 install pymongo
WORKDIR /app
# Skopiujmy nasz skrypt do katalogu /app w kontenerze
COPY ./skrypt_download.py ./
COPY ./skrypt_stat.py ./
COPY ./IUM_05.py ./
COPY ./training.py ./
COPY ./mongoObserver.py ./
COPY ./fileObserver.py ./
RUN mkdir /.kaggle
RUN chmod -R 777 /.kaggle