Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update mlflow plugin version for deployments fix #1499

Merged
merged 3 commits into from
Feb 12, 2024
Merged
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 models/mlflow/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

ARG FROM_IMAGE="condaforge/miniforge-pypy3"
ARG PYTHON_VER=3.11
ARG TAG=23.1.0-1
ARG TAG=23.11.0-0
FROM ${FROM_IMAGE}:${TAG} AS base

WORKDIR /mlflow
Expand Down Expand Up @@ -44,7 +44,7 @@ RUN sed -i 's/conda activate base/conda activate mlflow/g' ~/.bashrc
SHELL ["/opt/conda/bin/conda", "run", "-n", "mlflow", "/bin/bash", "-c"]

ARG TRITON_DIR=/mlflow/triton-inference-server
ARG TRITON_VER=r23.05
ARG TRITON_VER=r24.01

RUN mkdir ${TRITON_DIR} && \
cd ${TRITON_DIR} && \
Expand Down
Loading