7 lines
216 B
Docker
7 lines
216 B
Docker
FROM ubuntu:latest
|
|
RUN apt-get update
|
|
RUN apt-get install -y python3-pip
|
|
RUN apt-get install -y unzip
|
|
RUN python3 -m pip install --user kaggle
|
|
RUN python3 -m pip install --user pandas
|
|
RUN pip3 install -U scikit-learn |