From 925955580239b4f7c85a4b7bc8120e8b4065a8e2 Mon Sep 17 00:00:00 2001 From: biondizzle Date: Fri, 3 Apr 2026 03:16:45 +0000 Subject: [PATCH] Fix: Actually update LMCache to main branch (previous edit failed) --- vllm/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/vllm/Dockerfile b/vllm/Dockerfile index 50981a0..319bb3e 100644 --- a/vllm/Dockerfile +++ b/vllm/Dockerfile @@ -94,9 +94,10 @@ RUN cd flashinfer && \ uv build --wheel --no-build-isolation -o /wheels FROM build-base AS build-lmcache -ARG LMCACHE_REF=v0.3.7 -RUN git clone https://github.com/LMCache/LMCache.git -b ${LMCACHE_REF} && \ +# Bleeding edge: build from main branch (v0.4.2+) +RUN git clone https://github.com/LMCache/LMCache.git && \ cd LMCache && \ + git checkout main && \ # PyTorch version is dated in LMCache sed -i '/torch/d' pyproject.toml && \ uv pip install setuptools_scm && \