mlflow/Dockerfile

5 lines
125 B
Docker
Raw Normal View History

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