ium_z487183/CreateDataset.dockerfile
2023-04-21 13:07:47 +02:00

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