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