FROM python:3.10-slim COPY requirements.txt . RUN pip install -r requirements.txt EXPOSE 5000 ENTRYPOINT ["mlflow", "server"]