Fixed fetching vllm source code in MXFP4 version.

This commit is contained in:
Eugene Rakhmatulin
2026-01-30 09:07:01 -08:00
parent ef0f996df6
commit 34bd3ae39c

View File

@@ -175,7 +175,8 @@ RUN --mount=type=cache,id=repo-cache,target=/repo-cache \
# 2. Logic: Clone if missing, otherwise Fetch & Reset
if [ ! -d "vllm-mxfp4" ]; then \
echo "Cache miss: Cloning vLLM from scratch..." && \
git clone --recursive ${VLLM_REPO} vllm-mxfp4; \
git clone --recursive ${VLLM_REPO} vllm-mxfp4 && \
git checkout ${VLLM_SHA} ; \
else \
echo "Cache hit: Fetching updates..." && \
cd vllm-mxfp4 && \