ium_z434686/create.dockerfile

15 lines
258 B
Docker

FROM continuumio/anaconda3:latest
WORKDIR /script
RUN apt-get update && apt-get install -y
RUN pip install numpy
RUN pip install scikit-learn
RUN pip install pandas
RUN ls -a
COPY data/video-game-sales-with-ratings.csv .
CMD python ./create-dataset.py