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