Skip to content

Commit 00b26a5

Browse files
committed
Make DYNAMO_BASE_IMAGE a required ARG
1 parent 333e893 commit 00b26a5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

container/Dockerfile.vllm

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
22
# SPDX-License-Identifier: Apache-2.0
33

4-
# Base image can be overridden by build script to use pre-built dynamo base
5-
ARG DYNAMO_BASE_IMAGE=""
4+
# Base image MUST be provided by build script (use ./container/build.sh --framework VLLM)
5+
# This should be the dynamo-base image built from /container/Dockerfile
6+
ARG DYNAMO_BASE_IMAGE
67
ARG RELEASE_BUILD
78
ARG ENABLE_KVBM=false
89
ARG RUNTIME_IMAGE="nvcr.io/nvidia/cuda"

0 commit comments

Comments
 (0)