2023-04-18 21:26:17 +02:00
|
|
|
FROM continuumio/anaconda3:latest
|
|
|
|
|
|
|
|
WORKDIR /script
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y
|
|
|
|
|
2023-04-18 22:08:30 +02:00
|
|
|
RUN pip install numpy
|
|
|
|
RUN pip install scikit-learn
|
|
|
|
RUN pip install pandas
|
2023-04-18 21:26:17 +02:00
|
|
|
|
2023-04-18 22:08:30 +02:00
|
|
|
RUN ls -a
|
2023-04-18 21:47:27 +02:00
|
|
|
|
2023-04-18 22:25:42 +02:00
|
|
|
COPY ./data/Video_Games_Sales_as_at_22_Dec_2016.csv .
|
2023-04-18 22:25:50 +02:00
|
|
|
COPY ./create-dataset.py .
|
2023-04-18 21:26:17 +02:00
|
|
|
|
|
|
|
CMD python ./create-dataset.py
|