23 lines
356 B
Docker
23 lines
356 B
Docker
FROM python:3.7
|
|
|
|
WORKDIR /
|
|
|
|
RUN pip install kaggle
|
|
|
|
RUN pip install pandas
|
|
|
|
RUN pip install sklearn
|
|
|
|
COPY KaggleV2-May-2016.csv ./
|
|
|
|
COPY create_data.py ./
|
|
|
|
COPY stats_data.py ./
|
|
|
|
# CMD ["python", "./create_data.py"]
|
|
|
|
# CMD ["python", "./stats_data.py"]
|
|
|
|
# RUN kaggle datasets download -d joniarroba/noshowappointments
|
|
|
|
# RUN unzip -o noshowappointments.zip |