ium_478815/Dockerfile

27 lines
564 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-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 ./
CMD ./skrypt.sh