2022-04-02 17:27:04 +02:00
|
|
|
FROM ubuntu:latest
|
2022-04-02 19:12:06 +02:00
|
|
|
FROM python:3.9
|
2022-04-02 17:27:04 +02:00
|
|
|
|
2022-04-02 19:12:06 +02:00
|
|
|
RUN apt-get update
|
|
|
|
# RUN apt install -y python3-pip
|
2022-04-02 17:27:04 +02:00
|
|
|
|
|
|
|
RUN pip3 install pandas
|
|
|
|
RUN pip3 install matplotlib
|
|
|
|
RUN pip3 install sklearn
|
|
|
|
RUN pip3 install kaggle
|
2022-04-02 17:29:58 +02:00
|
|
|
|
|
|
|
WORKDIR /ium
|
|
|
|
|
|
|
|
COPY ./ium-data.py ./
|
|
|
|
|
|
|
|
CMD ./ium-data.py
|