19 lines
235 B
Docker
19 lines
235 B
Docker
FROM python:3.7
|
|
|
|
ARG KAGGLE_USERNAME
|
|
|
|
ARG KAGGLE_KEY
|
|
|
|
WORKDIR /
|
|
|
|
RUN pip install --user kaggle
|
|
|
|
RUN pip install --user pandas
|
|
|
|
RUN pip install --user sklearn
|
|
|
|
COPY KaggleV2-May-2016.csv ./
|
|
|
|
COPY create_data.py ./
|
|
|
|
COPY stats_data.py ./ |