10 lines
213 B
Docker
10 lines
213 B
Docker
FROM ubuntu:latest
|
|
|
|
ADD get-data.sh /get-data.sh
|
|
ADD prepare_dataset.py /prepare_dataset.py
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y python3 python3-pip unzip
|
|
RUN pip install pandas
|
|
RUN pip install scikit-learn
|