Upload files to ''

This commit is contained in:
Kacper Dudzic 2022-04-02 12:21:44 +02:00
parent 7fdd6d7c80
commit b9760c59d6

17
Dockerfile Normal file
View File

@ -0,0 +1,17 @@
FROM ubuntu:latest
WORKDIR /app
COPY ./skrypt.sh ./
COPY ./statystyki.sh ./
RUN chmod u+x ./skrypt.sh ./statystyki.sh
RUN apt update && apt install -y python3-pip zip
RUN pip install --user kaggle
RUN mkdir ~/.kaggle
RUN echo "{\"username\":\"kaerde\",\"key\":\"9831adcf128300863404c16935674937\"}" > ~/.kaggle/kaggle.json
RUN cd -
RUN echo "export PATH=\"\$HOME/.local/bin:\$PATH\"" >> ~/.bashrc