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
|
|
|
|
2024-05-05 14:12:55 +02:00
|
|
|
RUN pip3 install kaggle pandas scikit-learn torch sacred pymongo
|
2024-03-29 13:46:57 +01:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
2024-04-14 12:58:46 +02:00
|
|
|
COPY IUM_2.py model.py prediction.py ./
|