ium_478815/Dockerfile

46 lines
999 B
Docker
Raw Normal View History

2022-04-03 21:13:11 +02:00
FROM ubuntu:latest
RUN apt-get update -y
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
2022-05-06 19:42:56 +02:00
RUN pip3 install torch
2022-05-06 19:55:33 +02:00
RUN pip3 install sklearn
2022-05-06 22:59:24 +02:00
RUN pip3 install matplotlib
2022-05-07 14:04:17 +02:00
RUN pip3 install sacred
2022-05-07 14:36:34 +02:00
RUN pip3 install numpy
RUN pip3 install wheel --no-deps -U
RUN pip3 install GitPython
RUN pip3 install pymongo
2022-05-15 12:34:30 +02:00
RUN pip3 install mlflow
2022-05-15 22:34:05 +02:00
RUN pip3 install fastai
2022-05-07 14:36:34 +02:00
RUN apt-get install unzip
2022-06-05 22:05:16 +02:00
RUN pip3 install dvc
2022-04-03 21:13:11 +02:00
ARG CUTOFF
ENV CUTOFF=${CUTOFF}
RUN mkdir ~/.kaggle/
RUN echo '{"username":"kgirejko","key":"51854c15661583860a60db232a7026f0"}' > ~/.kaggle/kaggle.json
WORKDIR /app
2022-05-06 19:52:45 +02:00
COPY ./skrypt.sh ./
COPY ./skrypt_stats.sh ./
2022-05-08 19:20:59 +02:00
COPY DL.py .
2022-05-08 19:13:07 +02:00
COPY train-sacred.py .
2022-05-15 12:34:30 +02:00
COPY train-mlflow.py .
2022-05-08 19:13:07 +02:00
COPY evaluation.py .
COPY data.csv .
2022-05-06 19:52:45 +02:00
CMD ./skrypt.sh
2022-06-05 22:33:31 +02:00
RUN pip3 install dvc[ssh] paramiko
RUN apt install -y sshpass openssh-client
RUN useradd -r -u 111 jenkins