10 lines
218 B
Docker
10 lines
218 B
Docker
FROM ubuntu:latest
|
|
RUN apt clean
|
|
RUN apt update
|
|
RUN apt install -y python3
|
|
RUN apt install -y python3-pip
|
|
RUN apt install -y unzip
|
|
RUN pip3 install pandas
|
|
RUN pip3 install kaggle
|
|
COPY ./get_data.sh ./
|
|
COPY ./main.py ./ |