mlflow/Dockerfile

5 lines
125 B
Docker
Raw Normal View History

2023-11-29 21:24:22 +00:00
FROM python:3.10-slim
COPY requirements.txt .
RUN pip install -r requirements.txt
EXPOSE 5000
ENTRYPOINT ["mlflow", "server"]