2024-07-03 09:27:33 +00:00
|
|
|
FROM python:3.10-slim@sha256:0e20bcf0e55bb8b052775133f812801e609fb0550e9366f35e83bcf49134d33d
|
2023-11-29 21:24:22 +00:00
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
EXPOSE 5000
|
|
|
|
ENTRYPOINT ["mlflow", "server"]
|