2022-04-29 19:17:50 +02:00
|
|
|
FROM ubuntu:latest
|
|
|
|
RUN apt update && apt install -y python3-pip
|
|
|
|
RUN pip3 install pandas
|
|
|
|
RUN pip3 install sklearn
|
|
|
|
RUN pip3 install seaborn
|
|
|
|
RUN pip3 install ipython
|
|
|
|
RUN pip3 install torch
|
|
|
|
RUN pip3 install numpy
|
2022-05-15 14:22:54 +02:00
|
|
|
RUN pip3 install mlflow
|
2022-04-29 19:17:50 +02:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
2022-04-29 19:53:30 +02:00
|
|
|
COPY ./training.py ./
|
2022-05-15 14:22:54 +02:00
|
|
|
COPY ./training_mlflow.py ./
|
2022-04-29 20:55:27 +02:00
|
|
|
COPY ./evaluation.py ./
|