build.sh 9.86 KB
Newer Older
1
#!/bin/bash -e
Neelay Shah's avatar
Neelay Shah committed
2
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
3
# SPDX-License-Identifier: Apache-2.0
4
5
6
7
8
9
10
11
12
13
14
15
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
16

17

18
19
20
TAG=
RUN_PREFIX=
PLATFORM=linux/amd64
21
22
23
24

# Get short commit hash
commit_id=$(git rev-parse --short HEAD)

25
26
# if COMMIT_ID matches a TAG use that
current_tag=$(git describe --tags --exact-match 2>/dev/null | sed 's/^v//') || true
27

28
29
# Get latest TAG and add COMMIT_ID for dev
latest_tag=$(git describe --tags --abbrev=0 $(git rev-list --tags --max-count=1 main) | sed 's/^v//') || true
30
31
32
33
if [[ -z ${latest_tag} ]]; then
    latest_tag="0.0.1"
    echo "No git release tag found, setting to unknown version: ${latest_tag}"
fi
34

35
36
37
38
# Use tag if available, otherwise use latest_tag.dev.commit_id
VERSION=v${current_tag:-$latest_tag.dev.$commit_id}

PYTHON_PACKAGE_VERSION=${current_tag:-$latest_tag.dev+$commit_id}
39
40
41
42
43
44

# Frameworks
#
# Each framework has a corresponding base image.  Additional
# dependencies are specified in the /container/deps folder and
# installed within framework specific sections of the Dockerfile.
45

ptarasiewiczNV's avatar
ptarasiewiczNV committed
46
declare -A FRAMEWORKS=(["STANDARD"]=1 ["TENSORRTLLM"]=2 ["VLLM"]=3 ["VLLM_NIXL"]=4)
47
DEFAULT_FRAMEWORK=VLLM
48
49
50
51
52
53
54

SOURCE_DIR=$(dirname "$(readlink -f "$0")")
DOCKERFILE=${SOURCE_DIR}/Dockerfile
BUILD_CONTEXT=$(dirname "$(readlink -f "$SOURCE_DIR")")

# Base Images

55
STANDARD_BASE_VERSION=25.01
56
57
58
STANDARD_BASE_IMAGE=nvcr.io/nvidia/tritonserver
STANDARD_BASE_IMAGE_TAG=${STANDARD_BASE_VERSION}-py3

59
TENSORRTLLM_BASE_VERSION=25.01
60
61
62
TENSORRTLLM_BASE_IMAGE="gitlab-master.nvidia.com:5005/dl/dgx/tritonserver/tensorrt-llm/amd64"
TENSORRTLLM_BASE_IMAGE_TAG=krish-fix-trtllm-build.23766174
TENSORRTLLM_PIP_WHEEL_PATH=""
63

64
65
VLLM_BASE_IMAGE="nvcr.io/nvidia/cuda-dl-base"
VLLM_BASE_IMAGE_TAG="25.01-cuda12.8-devel-ubuntu24.04"
66

Hongkuan Zhou's avatar
Hongkuan Zhou committed
67
NIXL_COMMIT=d7a2c571a60d76a3d6c8458140eaaa5025fa48c4
68
69
NIXL_REPO=ai-dynamo/nixl.git

70
71
72
73
74
75
76
get_options() {
    while :; do
        case $1 in
        -h | -\? | --help)
            show_help
            exit
            ;;
77
        --platform)
78
79
80
81
            if [ "$2" ]; then
                PLATFORM=$2
                shift
            else
82
                missing_requirement $1
83
84
            fi
            ;;
85
        --framework)
86
87
88
89
            if [ "$2" ]; then
                FRAMEWORK=$2
                shift
            else
90
                missing_requirement $1
91
92
            fi
            ;;
93
        --tensorrtllm-pip-wheel-path)
94
            if [ "$2" ]; then
95
                TENSORRTLLM_PIP_WHEEL_PATH=$2
96
97
98
99
100
                shift
            else
                missing_requirement $1
            fi
            ;;
101
102
103
104
105
        --base-image)
            if [ "$2" ]; then
                BASE_IMAGE=$2
                shift
            else
106
                missing_requirement $1
107
108
            fi
            ;;
109
        --base-image-tag)
110
111
112
113
            if [ "$2" ]; then
                BASE_IMAGE_TAG=$2
                shift
            else
114
115
116
117
118
119
120
121
122
                missing_requirement $1
            fi
            ;;
        --target)
            if [ "$2" ]; then
                TARGET=$2
                shift
            else
                missing_requirement $1
123
124
125
126
127
128
129
            fi
            ;;
        --build-arg)
            if [ "$2" ]; then
                BUILD_ARGS+="--build-arg $2 "
                shift
            else
130
                missing_requirement $1
131
132
133
134
            fi
            ;;
        --tag)
            if [ "$2" ]; then
135
                TAG="--tag $2"
136
137
                shift
            else
138
                missing_requirement $1
139
140
141
142
143
144
145
146
147
148
            fi
            ;;
        --dry-run)
            RUN_PREFIX="echo"
            echo ""
            echo "=============================="
            echo "DRY RUN: COMMANDS PRINTED ONLY"
            echo "=============================="
            echo ""
            ;;
149
150
        --no-cache)
            NO_CACHE=" --no-cache"
151
            ;;
152
153
        --cache-from)
            if [ "$2" ]; then
154
155
156
                CACHE_FROM="--cache-from $2"
                shift
            else
157
                missing_requirement $1
158
159
            fi
            ;;
160
161
162
163
164
165
166
167
        --cache-to)
            if [ "$2" ]; then
                CACHE_TO="--cache-to $2"
                shift
            else
                missing_requirement $1
            fi
            ;;
ptarasiewiczNV's avatar
ptarasiewiczNV committed
168
169
170
171
172
173
174
175
        --build-context)
            if [ "$2" ]; then
                BUILD_CONTEXT_ARG="--build-context $2"
                shift
            else
                missing_requirement $1
            fi
            ;;
176
177
178
179
180
        --)
            shift
            break
            ;;
         -?*)
181
            error 'ERROR: Unknown option: ' $1
182
            ;;
183
184
         ?*)
            error 'ERROR: Unknown option: ' $1
185
186
187
188
189
190
191
192
193
            ;;
        *)
            break
            ;;
        esac
        shift
    done

    if [ -z "$FRAMEWORK" ]; then
194
        FRAMEWORK=$DEFAULT_FRAMEWORK
195
196
    fi

197
198
199
200
    if [[ ${FRAMEWORK^^} == "VLLM_NIXL" ]]; then
	FRAMEWORK="VLLM"
    fi

201
    if [ ! -z "$FRAMEWORK" ]; then
202
        FRAMEWORK=${FRAMEWORK^^}
203

204
205
206
        if [[ ! -n "${FRAMEWORKS[$FRAMEWORK]}" ]]; then
            error 'ERROR: Unknown framework: ' $FRAMEWORK
        fi
207

208
209
210
211
        if [ -z $BASE_IMAGE_TAG ]; then
            BASE_IMAGE_TAG=${FRAMEWORK}_BASE_IMAGE_TAG
            BASE_IMAGE_TAG=${!BASE_IMAGE_TAG}
        fi
212

213
214
215
216
        if [ -z $BASE_IMAGE ]; then
            BASE_IMAGE=${FRAMEWORK}_BASE_IMAGE
            BASE_IMAGE=${!BASE_IMAGE}
        fi
217

218
219
220
        if [ -z $BASE_IMAGE ]; then
            error "ERROR: Framework $FRAMEWORK without BASE_IMAGE"
        fi
221

222
223
        BASE_VERSION=${FRAMEWORK}_BASE_VERSION
        BASE_VERSION=${!BASE_VERSION}
224
225
226
227

    fi

    if [ -z "$TAG" ]; then
228
        TAG="--tag dynamo:${VERSION}-${FRAMEWORK,,}"
229
230
231
        if [ ! -z ${TARGET} ]; then
            TAG="${TAG}-${TARGET}"
        fi
232
233
234
235
236
237
    fi

    if [ ! -z "$PLATFORM" ]; then
        PLATFORM="--platform ${PLATFORM}"
    fi

238
239
240
    if [ ! -z "$TARGET" ]; then
        TARGET_STR="--target ${TARGET}"
    fi
241
242
243
244
245
}


show_image_options() {
    echo ""
246
    echo "Building Dynamo Image: '${TAG}'"
247
248
249
250
    echo ""
    echo "   Base: '${BASE_IMAGE}'"
    echo "   Base_Image_Tag: '${BASE_IMAGE_TAG}'"
    if [[ $FRAMEWORK == "TENSORRTLLM" ]]; then
251
        echo "   Tensorrtllm_Pip_Wheel_Path: '${TENSORRTLLM_PIP_WHEEL_PATH}'"
252
253
254
255
256
257
258
259
260
261
262
263
264
    fi
    echo "   Build Context: '${BUILD_CONTEXT}'"
    echo "   Build Arguments: '${BUILD_ARGS}'"
    echo "   Framework: '${FRAMEWORK}'"
    echo ""
}

show_help() {
    echo "usage: build.sh"
    echo "  [--base base image]"
    echo "  [--base-imge-tag base image tag]"
    echo "  [--platform platform for docker build"
    echo "  [--framework framework one of ${!FRAMEWORKS[@]}]"
265
    echo "  [--tensorrtllm-pip-wheel-path path to tensorrtllm pip wheel]"
266
    echo "  [--build-arg additional build args to pass to docker build]"
267
268
    echo "  [--cache-from cache location to start from]"
    echo "  [--cache-to location where to cache the build output]"
269
270
271
    echo "  [--tag tag for image]"
    echo "  [--no-cache disable docker build cache]"
    echo "  [--dry-run print docker commands without running]"
ptarasiewiczNV's avatar
ptarasiewiczNV committed
272
    echo "  [--build-context name=path to add build context]"
273
274
275
276
277
278
279
280
281
282
283
284
285
286
    exit 0
}

missing_requirement() {
    error "ERROR: $1 requires an argument."
}

error() {
    printf '%s %s\n' "$1" "$2" >&2
    exit 1
}

get_options "$@"

287
288
289
# Update DOCKERFILE if framework is VLLM
if [[ $FRAMEWORK == "VLLM" ]]; then
    DOCKERFILE=${SOURCE_DIR}/Dockerfile.vllm
290
291
elif [[ $FRAMEWORK == "TENSORRTLLM" ]]; then
    DOCKERFILE=${SOURCE_DIR}/Dockerfile.tensorrt_llm
292
293
fi

294
if [[ $FRAMEWORK == "VLLM" ]]; then
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
    TEMP_DIR=$(mktemp -d)

    # Clean up temp directory on script exit
    trap 'rm -rf "$TEMP_DIR"' EXIT

    # Clone original NIXL to temp directory

    if [ ! -z ${GITHUB_TOKEN} ]; then
        git clone https://oauth2:${GITHUB_TOKEN}@github.com/${NIXL_REPO} "$TEMP_DIR/nixl_src"
    else
        # Try HTTPS first with credential prompting disabled, fall back to SSH if it fails
        if ! GIT_TERMINAL_PROMPT=0 git clone https://github.com/${NIXL_REPO} "$TEMP_DIR/nixl_src"; then
            echo "HTTPS clone failed, falling back to SSH..."
            git clone git@github.com:${NIXL_REPO} "$TEMP_DIR/nixl_src"
        fi
    fi

    cd "$TEMP_DIR/nixl_src"

    git checkout ${NIXL_COMMIT}

    BUILD_CONTEXT_ARG+=" --build-context nixl=$TEMP_DIR/nixl_src"
fi

319
320
# BUILD DEV IMAGE

321
BUILD_ARGS+=" --build-arg BASE_IMAGE=$BASE_IMAGE --build-arg BASE_IMAGE_TAG=$BASE_IMAGE_TAG --build-arg FRAMEWORK=$FRAMEWORK --build-arg ${FRAMEWORK}_FRAMEWORK=1 --build-arg VERSION=$VERSION --build-arg PYTHON_PACKAGE_VERSION=$PYTHON_PACKAGE_VERSION"
322
323
324
325
326
327
328
329
330

if [ ! -z ${GITHUB_TOKEN} ]; then
    BUILD_ARGS+=" --build-arg GITHUB_TOKEN=${GITHUB_TOKEN} "
fi

if [ ! -z ${GITLAB_TOKEN} ]; then
    BUILD_ARGS+=" --build-arg GITLAB_TOKEN=${GITLAB_TOKEN} "
fi

331
332
333
334
if [[ $FRAMEWORK == "TENSORRTLLM" ]]; then
    if [ ! -z ${TENSORRTLLM_PIP_WHEEL_PATH} ]; then
        BUILD_ARGS+=" --build-arg TENSORRTLLM_PIP_WHEEL_PATH=${TENSORRTLLM_PIP_WHEEL_PATH} "
    fi
335
336
337
338
339
340
fi

if [ ! -z ${HF_TOKEN} ]; then
    BUILD_ARGS+=" --build-arg HF_TOKEN=${HF_TOKEN} "
fi

341
LATEST_TAG="--tag dynamo:latest-${FRAMEWORK,,}"
342
343
344
if [ ! -z ${TARGET} ]; then
    LATEST_TAG="${LATEST_TAG}-${TARGET}"
fi
345

346
347
348
349
350
351
show_image_options

if [ -z "$RUN_PREFIX" ]; then
    set -x
fi

352
$RUN_PREFIX docker buildx build -f $DOCKERFILE $TARGET_STR $PLATFORM $BUILD_ARGS $CACHE_FROM $CACHE_TO --output type=docker $TAG $LATEST_TAG $BUILD_CONTEXT_ARG $BUILD_CONTEXT $NO_CACHE
353
354
355
356
357
358
359
360

{ set +x; } 2>/dev/null

if [ -z "$RUN_PREFIX" ]; then
    set -x
fi

{ set +x; } 2>/dev/null