Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
bump to 25.11
Signed-off-by: Dmitry Tokarev <[email protected]>
  • Loading branch information
dmitry-tokarev-nv committed Dec 5, 2025
commit f12a85fbcbfe0f0c8ed7b9e7b63dac3d6c9a41a8
2 changes: 1 addition & 1 deletion container/Dockerfile.vllm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ARG PYTHON_VERSION
ARG ENABLE_KVBM

ARG RUNTIME_IMAGE="nvcr.io/nvidia/cuda-dl-base"
ARG RUNTIME_IMAGE_TAG="25.10-cuda13.0-runtime-ubuntu24.04"
ARG RUNTIME_IMAGE_TAG="25.11-cuda13.0-runtime-ubuntu24.04"
ARG CUDA_VERSION="13.0"

# Make sure to update the dependency version in pyproject.toml when updating this
Expand Down
8 changes: 4 additions & 4 deletions container/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ VLLM_BASE_IMAGE="nvcr.io/nvidia/cuda-dl-base"
# Please check https://github.com/ai-dynamo/dynamo/pull/1065
# for details and reproducer to manually test if the image
# can be updated to later versions.
VLLM_BASE_IMAGE_TAG="25.10-cuda13.0-devel-ubuntu24.04"
VLLM_BASE_IMAGE_TAG="25.11-cuda13.0-devel-ubuntu24.04"

NONE_BASE_IMAGE="nvcr.io/nvidia/cuda-dl-base"
NONE_BASE_IMAGE_TAG="25.01-cuda12.8-devel-ubuntu24.04"
Expand Down Expand Up @@ -511,14 +511,14 @@ BUILD_ARGS+=" --build-arg DYNAMO_COMMIT_SHA=$DYNAMO_COMMIT_SHA "
if [[ $FRAMEWORK == "VLLM" ]] && [[ "$PLATFORM" == *"linux/arm64"* ]]; then
# Set base image tag to CUDA 12.9 if using the default value (user didn't override)
if [ "$BASE_IMAGE_TAG" == "$VLLM_BASE_IMAGE_TAG" ]; then
BASE_IMAGE_TAG="25.10-cuda13.0-devel-ubuntu24.04"
BASE_IMAGE_TAG="25.11-cuda13.0-devel-ubuntu24.04"
echo "INFO: Automatically setting base-image-tag to $BASE_IMAGE_TAG for vLLM ARM64"
fi

# Add required build args if not already present
if [[ "$BUILD_ARGS" != *"RUNTIME_IMAGE_TAG"* ]]; then
BUILD_ARGS+=" --build-arg RUNTIME_IMAGE_TAG=25.10-cuda13.0-runtime-ubuntu24.04 "
echo "INFO: Automatically setting RUNTIME_IMAGE_TAG=25.10-cuda13.0-runtime-ubuntu24.04 for vLLM ARM64"
BUILD_ARGS+=" --build-arg RUNTIME_IMAGE_TAG=25.11-cuda13.0-runtime-ubuntu24.04 "
echo "INFO: Automatically setting RUNTIME_IMAGE_TAG=25.11-cuda13.0-runtime-ubuntu24.04 for vLLM ARM64"
fi

if [[ "$BUILD_ARGS" != *"CUDA_VERSION"* ]]; then
Expand Down
Loading