From 2699d0f22b72a41026a74960ca0c505fc368b590 Mon Sep 17 00:00:00 2001 From: dabrign Date: Mon, 13 Jan 2020 11:41:42 +0100 Subject: [PATCH] Update dockerfile Changed to 1.5.0 Since 1.5.0 mlflow server was deprecated in favor of mlflow ui --- infrastructure/helm-charts/mlflow/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure/helm-charts/mlflow/Dockerfile b/infrastructure/helm-charts/mlflow/Dockerfile index cfd7dfa..fd5de53 100644 --- a/infrastructure/helm-charts/mlflow/Dockerfile +++ b/infrastructure/helm-charts/mlflow/Dockerfile @@ -6,11 +6,11 @@ ENV BACKEND_STORE_URI=$TRACKING_STORE ARG ARTIFACT_STORE="/mnt/mlflow_data" ENV DEFAULT_ARTIFACT_ROOT=$ARTIFACT_STORE -RUN pip install -U mlflow==1.2.0 +RUN pip install -U mlflow==1.5.0 EXPOSE 5000 -CMD mlflow server \ +CMD mlflow ui \ --backend-store-uri $BACKEND_STORE_URI \ --default-artifact-root $DEFAULT_ARTIFACT_ROOT \ --host 0.0.0.0 --port 5000