ium_434732/Dockerfile

26 lines
672 B
Docker
Raw Normal View History

2021-04-10 15:08:18 +02:00
FROM ubuntu:latest
RUN apt update && apt install -y python3 && apt install -y nano
RUN apt update && apt install python3-pip -y
2021-04-10 15:33:36 +02:00
RUN pip3 install kaggle && pip3 install pandas && pip3 install scikit-learn && pip3 install matplotlib
2021-04-21 20:05:27 +02:00
RUN pip3 install torch torchvision torchaudio
2021-04-10 15:08:18 +02:00
RUN apt install -y curl
RUN pip3 install --user wget
2021-05-15 12:04:19 +02:00
RUN pip3 install sacred && pip3 install GitPython && pip3 install pymongo
2021-04-10 15:08:18 +02:00
WORKDIR /app
# Skopiujmy nasz skrypt do katalogu /app w kontenerze
COPY ./skrypt_download.py ./
COPY ./skrypt_stat.py ./
2021-04-24 12:21:33 +02:00
COPY ./IUM_05.py ./
2021-05-15 12:04:19 +02:00
COPY ./training.py ./
2021-05-15 17:01:32 +02:00
COPY ./mongoObserver.py ./
2021-05-15 17:30:40 +02:00
COPY ./fileObserver.py ./
2021-04-10 15:08:18 +02:00
2021-04-11 09:44:23 +02:00
RUN mkdir /.kaggle
RUN chmod -R 777 /.kaggle
2021-04-10 15:08:18 +02:00