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