2024-03-29 13:46:57 +01:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
|
|
|
RUN apt update && apt install -y python3-pip
|
|
|
|
RUN apt install unzip
|
2024-04-02 12:56:26 +02:00
|
|
|
RUN apt install bc
|
2024-04-02 19:30:59 +02:00
|
|
|
|
|
|
|
RUN pip3 install kaggle pandas scikit-learn
|
2024-03-29 13:46:57 +01:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
2024-04-02 19:05:02 +02:00
|
|
|
COPY IUM_2.py ./
|