mlflow/Dockerfile

5 lines
197 B
Docker
Raw Permalink Normal View History

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