2022-04-03 14:21:49 +02:00
|
|
|
FROM python:3.9
|
|
|
|
|
|
|
|
|
|
|
|
RUN pip install --user kaggle
|
|
|
|
RUN pip install --user pandas
|
2022-04-03 14:13:12 +02:00
|
|
|
|
2022-04-03 14:30:27 +02:00
|
|
|
ADD . .
|
|
|
|
ARG KAGGLE_USERNAME
|
|
|
|
ARG KAGGLE_KEY
|
|
|
|
|
|
|
|
RUN chmod a+x *.sh
|
2022-04-03 14:32:40 +02:00
|
|
|
RUN ./dataset_download.sh
|
2022-04-03 14:30:27 +02:00
|
|
|
|
2022-04-03 14:25:06 +02:00
|
|
|
CMD python kagle.py
|