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 15:23:13 +02:00
|
|
|
RUN pip install kaggle
|
2024-03-29 13:46:57 +01:00
|
|
|
RUN pip install --user pandas
|
|
|
|
RUN pip install --user scikit-learn
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
2024-04-02 19:05:02 +02:00
|
|
|
COPY IUM_2.py ./
|