Skip to content
This repository has been archived by the owner on Oct 21, 2020. It is now read-only.

Update dockerfile #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions infrastructure/helm-charts/mlflow/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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