7 lines
180 B
Docker
7 lines
180 B
Docker
|
FROM ubuntu:latest
|
||
|
RUN apt-get update
|
||
|
RUN apt-get install -y python
|
||
|
RUN apt-get install -y python3-pip
|
||
|
RUN pip install kaggle
|
||
|
RUN pip install pandas
|
||
|
RUN pip install -U scikit-learn
|