ium_464914/mlflow/Dockerfile

16 lines
295 B
Docker
Raw Normal View History

2024-05-06 22:08:05 +02:00
FROM python:3.10
RUN pip install --upgrade pip
RUN pip3 install mlflow
RUN pip3 install scikit-learn
RUN pip3 install pandas
RUN pip3 install numpy
RUN pip3 install torch
COPY mlflow_model.py .
COPY mlflow_prediction.py .
COPY forest_test.csv .
COPY forest_train.csv .
COPY forest_val.csv .