From 5c29d2bea7e244ccb285fb1a2b1ac33ba6dab8d5 Mon Sep 17 00:00:00 2001 From: biondizzle Date: Fri, 3 Apr 2026 03:34:58 +0000 Subject: [PATCH] Fix: LMCache default branch is 'dev' not 'main' --- vllm/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vllm/Dockerfile b/vllm/Dockerfile index 319bb3e..8c5c0e8 100644 --- a/vllm/Dockerfile +++ b/vllm/Dockerfile @@ -94,10 +94,10 @@ RUN cd flashinfer && \ uv build --wheel --no-build-isolation -o /wheels FROM build-base AS build-lmcache -# Bleeding edge: build from main branch (v0.4.2+) +# Bleeding edge: build from dev branch (v0.4.2+) RUN git clone https://github.com/LMCache/LMCache.git && \ cd LMCache && \ - git checkout main && \ + git checkout dev && \ # PyTorch version is dated in LMCache sed -i '/torch/d' pyproject.toml && \ uv pip install setuptools_scm && \