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