16 lines
224 B
Docker
16 lines
224 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt 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 ./
|
|
|
|
CMD ./ium-data.py
|