7 lines
191 B
Docker
7 lines
191 B
Docker
FROM ubuntu:latest
|
|
RUN apt-get update --fix-missing
|
|
RUN apt install python3-pip -y
|
|
RUN pip install --user pandas
|
|
RUN pip install --user kaggle
|
|
RUN apt-get install unzip
|
|
RUN apt install git -y |