Skip to content

Instantly share code, notes, and snippets.

@al102964
Created February 2, 2020 17:58
Show Gist options
  • Save al102964/2e7f202559b2ba30015bf59478960a17 to your computer and use it in GitHub Desktop.
Save al102964/2e7f202559b2ba30015bf59478960a17 to your computer and use it in GitHub Desktop.
FROM python:3.7.5-slim
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
EXPOSE 5000
ENTRYPOINT sleep 25 && mlflow server --backend-store-uri postgresql://mlflow_user:mlflow@postgres/mlflow_db --default-artifact-root ftp://test:test@ftpd/home/test/ --host 0.0.0.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment