dockerfile with unauthorized kaggle
This commit is contained in:
parent
6275dfbe86
commit
366a274be7
20
dockerfile
Normal file
20
dockerfile
Normal file
@ -0,0 +1,20 @@
|
||||
FROM ubuntu:latest
|
||||
|
||||
RUN apt-get update --fix-missing
|
||||
RUN apt install python3-pip -y
|
||||
RUN apt install unzip -y
|
||||
RUN apt install git -y
|
||||
|
||||
RUN pip install --user kaggle
|
||||
RUN pip install --user pandas
|
||||
|
||||
RUN ln -s ~/.local/bin/kaggle /usr/bin/kaggle
|
||||
ENV PATH="$PATH:~/.local/bin/kaggle"
|
||||
ENV KAGGLE_USERNAME="wiktorbombola"
|
||||
ENV KAGGLE_KEY=""
|
||||
|
||||
# RUN echo "alias kaggle='~/.local/bin/kaggle'" >> ~/.bashrc
|
||||
|
||||
COPY ./script.sh ./
|
||||
|
||||
CMD ./script.sh 300
|
Loading…
Reference in New Issue
Block a user