10 lines
124 B
Docker
10 lines
124 B
Docker
FROM ubuntu:20.04
|
|
|
|
RUN apt update && apt install -y python3 python3-pip
|
|
|
|
RUN pip3 install kaggle
|
|
RUN pip3 install pandas
|
|
|
|
|
|
|