mlflow/Dockerfile

5 lines
197 B
Docker
Raw Normal View History

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