2022-04-02 12:21:44 +02:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
2022-04-02 12:56:22 +02:00
|
|
|
WORKDIR /ium
|
2022-04-02 12:21:44 +02:00
|
|
|
|
2022-04-02 16:41:37 +02:00
|
|
|
RUN apt update && apt install -y python3-pip
|
2022-04-02 12:21:44 +02:00
|
|
|
|
2022-04-02 15:52:30 +02:00
|
|
|
RUN pip3 install pandas
|
|
|
|
RUN pip3 install numpy
|
|
|
|
RUN pip3 install sklearn
|
2022-04-02 12:21:44 +02:00
|
|
|
|
2022-04-02 16:41:37 +02:00
|
|
|
COPY ./lego_sets.csv ./
|
2022-04-02 16:14:23 +02:00
|
|
|
COPY ./process_dataset.py ./
|