mlflow/Dockerfile

5 lines
197 B
Docker
Raw Normal View History

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