mlflow/Dockerfile

5 lines
197 B
Docker

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