14 lines
188 B
Docker
14 lines
188 B
Docker
FROM python:3.9
|
|
|
|
|
|
RUN pip install --user kaggle
|
|
RUN pip install --user pandas
|
|
|
|
ADD . .
|
|
ARG KAGGLE_USERNAME
|
|
ARG KAGGLE_KEY
|
|
|
|
RUN chmod a+x *.sh
|
|
RUN ./download_dataset.sh
|
|
|
|
CMD python kagle.py |