16 lines
292 B
Docker
16 lines
292 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 echo $(ls -a)
|
|
|
|
COPY Video_Games_Sales_as_at_22_Dec_2016.csv .
|
|
COPY create-dataset.py .
|
|
|
|
CMD python ./create-dataset.py |