19 lines
265 B
Docker
19 lines
265 B
Docker
FROM ubuntu:latest
|
|
FROM python:3.9
|
|
|
|
RUN apt-get update
|
|
# RUN apt install -y python3-pip
|
|
|
|
RUN pip3 install pandas
|
|
RUN pip3 install matplotlib
|
|
RUN pip3 install sklearn
|
|
RUN pip3 install kaggle
|
|
|
|
WORKDIR /ium
|
|
|
|
COPY ./ium-data.py ./
|
|
|
|
RUN ./download.sh
|
|
|
|
CMD ./ium-data.py
|