ium_478839/Dockerfile

42 lines
1.2 KiB
Docker
Raw Normal View History

2022-05-06 19:33:28 +02:00
# Obraz ubuntu latest
FROM ubuntu:latest
# Instalacja niezbędnych bibliotek
RUN apt update
RUN apt-get update
RUN apt install -y figlet
RUN export PATH=$PATH:/usr/local/bin/python”
RUN apt install python3-pip -y
RUN apt install unzip -y
RUN pip3 install kaggle
RUN pip3 install pandas
RUN pip3 install torch
2022-05-06 19:39:36 +02:00
RUN pip3 install torchvision
2022-05-06 19:37:49 +02:00
RUN pip3 install jovian
2022-05-06 19:42:32 +02:00
RUN pip3 install matplotlib
RUN pip3 install seaborn
2022-05-06 22:47:15 +02:00
RUN pip3 install sklearn
2022-05-08 19:44:08 +02:00
RUN pip3 install sacred
2022-05-08 19:46:08 +02:00
RUN pip3 install numpy
RUN pip3 install wheel --no-deps -U
RUN pip3 install GitPython
RUN pip3 install pymongo
2022-05-15 11:50:27 +02:00
RUN pip3 install mlflow
2022-05-08 19:46:08 +02:00
2022-05-06 19:33:28 +02:00
# Przygotowanie kaggle
RUN mkdir ~/.kaggle/
RUN echo '{"username":"sebastianwalesa","key":"c879e3806be4cd6ade7aa10ea81d4cfe"}' > ~/.kaggle/kaggle.json
# Stwórzmy w kontenerze (jeśli nie istnieje) katalog /app i przejdźmy do niego (wszystkie kolejne polecenia RUN, CMD, ENTRYPOINT, COPY i ADD będą w nim wykonywane)
WORKDIR /app
# Skopiujmy nasz skrypt do katalogu /app w kontenerze
COPY ./skrypt.sh ./
COPY ./init.py ./
2022-05-15 12:36:45 +02:00
COPY ./understat.csv ./
COPY ./ml_pytorch_mlflow.py ./
2022-05-06 19:33:28 +02:00
# Domyślne polecenie, które zostanie uruchomione w kontenerze po jego starcie
2022-04-03 01:19:07 +02:00
CMD ./skrypt.sh