From cdfd37c1e6c4431ad592e85516bcfd29a541b500 Mon Sep 17 00:00:00 2001 From: biondizzle Date: Fri, 10 Apr 2026 15:32:16 +0000 Subject: [PATCH] Fix Dockerfile: separate git clone and build RUN commands --- vllm/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vllm/Dockerfile b/vllm/Dockerfile index 88222fd..7f60fd3 100644 --- a/vllm/Dockerfile +++ b/vllm/Dockerfile @@ -162,7 +162,7 @@ ARG VLLM_REF=cmm ARG VLLM_COMMIT=latest # Install ccache for faster compilation RUN apt-get update && apt-get install -y ccache -RUN echo "VLLM_COMMIT=${VLLM_COMMIT}" && git clone https://sweetapi.com/biondizzle/vllm.git && \ +RUN echo "VLLM_COMMIT=${VLLM_COMMIT}" && git clone https://sweetapi.com/biondizzle/vllm.git RUN cd vllm && \ git checkout ${VLLM_REF} && \ echo "\n\n========================================" && \