From ae19b66fdda1303b05e5d0cd4fe8f73137604032 Mon Sep 17 00:00:00 2001 From: Eugene Rakhmatulin Date: Tue, 3 Mar 2026 23:27:47 -0800 Subject: [PATCH] Bumped base image version --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4e224f0..7b1201a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ ARG BUILD_JOBS=16 # ========================================================= # STAGE 1: Base Image (Installs Dependencies) # ========================================================= -FROM nvcr.io/nvidia/pytorch:26.01-py3 AS base +FROM nvcr.io/nvidia/pytorch:26.02-py3 AS base # Build parallemism ARG BUILD_JOBS @@ -207,7 +207,7 @@ COPY --from=vllm-builder /workspace/wheels / # ========================================================= # STAGE 6: Runner (Installs wheels from host ./wheels/) # ========================================================= -FROM nvcr.io/nvidia/pytorch:26.01-py3 AS runner +FROM nvcr.io/nvidia/pytorch:26.02-py3 AS runner # Transferring build settings from build image because of ptxas/jit compilation during vLLM startup # Build parallemism