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