Created
June 11, 2019 16:26
-
-
Save deeperunderstanding/cc5d92b907bbb1376212fc573905eac0 to your computer and use it in GitHub Desktop.
Dockerfile for Simple MLflow Tracking Server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.7.0 | |
RUN pip install mlflow==1.0.0 | |
RUN mkdir /mlflow/ | |
CMD mlflow server \ | |
--backend-store-uri /mlflow \ | |
--host 0.0.0.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment