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