2022-04-03 13:25:27 +02:00
|
|
|
FROM ubuntu:latest
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get install -y python3-pip
|
2022-04-03 14:02:35 +02:00
|
|
|
RUN apt-get install -y unzip
|
2022-04-03 14:08:17 +02:00
|
|
|
RUN pip3 install --user kaggle
|
|
|
|
RUN pip3 install --user pandas
|
|
|
|
RUN pip3 install -U scikit-learn
|