From 436109081cb7b262c1c5964ff6dcc896797a0969 Mon Sep 17 00:00:00 2001 From: biondizzle Date: Mon, 11 May 2026 16:12:56 +0000 Subject: [PATCH] bump cache buster to 24 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f580d48..8f78ea0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y git screen cmake && rm -rf /var/lib/apt # Clone and build DeepGEMM with NVFP4 mega_moe kernel # CACHE_BUSTER: increment to force fresh clone -RUN git clone -b nvfp4-mega-moe https://sweetapi.com/biondizzle/DeepGEMM.git /root/DeepGEMM && CACHE_BUSTER=1 +RUN git clone -b nvfp4-mega-moe https://sweetapi.com/biondizzle/DeepGEMM.git /root/DeepGEMM && CACHE_BUSTER=24 # Build DeepGEMM with proper CUDA/NVRTC paths ENV CPATH="/usr/local/lib/python3.12/dist-packages/flashinfer/data/cutlass/include:/usr/local/lib/python3.12/dist-packages/nvidia/cu13/include:/usr/local/cuda-13.0/include:${CPATH}" @@ -21,7 +21,7 @@ RUN cd /root/DeepGEMM && python3 setup.py build_ext --inplace # Copy our DeepSeek V4 patch over vLLM's model file COPY patches/deepseek_v4.py /usr/local/lib/python3.12/dist-packages/vllm/model_executor/models/deepseek_v4.py # Bust cache for patch changes -ARG PATCH_CACHE_BUSTER=0 +ARG PATCH_CACHE_BUSTER=24 RUN echo "Patch cache buster: $PATCH_CACHE_BUSTER" > /dev/null # Verify everything imports