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