24 lines
486 B
Plaintext
24 lines
486 B
Plaintext
|
FROM ubuntu:latest
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
RUN apt-get update && apt-get install -y figlet python3 python3-pip unzip
|
||
|
RUN pip3 install kaggle
|
||
|
RUN pip3 install pandas
|
||
|
|
||
|
# ENV PATH="/root/.local/bin:${PATH}"
|
||
|
|
||
|
COPY . .
|
||
|
COPY ./figlet-loop.sh ./
|
||
|
COPY ./download.sh ./
|
||
|
COPY ./script.py ./
|
||
|
# COPY ./kaggle.json /root/.kaggle/kaggle.json
|
||
|
|
||
|
ARG KAGGLE_USERNAME=testKAGGLE_USERNAME
|
||
|
ARG KAGGLE_KEY=test1KAGGLE_KEY
|
||
|
|
||
|
RUN pip freeze
|
||
|
RUN chmod u+x ./script.py
|
||
|
|
||
|
# RUN ./download.sh 117928
|
||
|
# RUN python3 ./script.py
|