Skip to content

Commit 4a9cd18

Browse files
Apply suggestion from @ZhanruiSunCh
Co-authored-by: Zhanrui Sun <[email protected]> Signed-off-by: Yanchao Lu <[email protected]>
1 parent 8c7366c commit 4a9cd18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jenkins/BuildDockerImage.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,8 +286,8 @@ def buildImage(config, imageKeyToTag)
286286
def TRITON_BASE_TAG = sh(script: "cd ${LLM_ROOT} && grep 'ARG TRITON_BASE_TAG=' docker/Dockerfile.multi | grep -o '=.*' | tr -d '=\"'", returnStdout: true).trim()
287287

288288
// Replace the base image and triton image with the internal mirror
289-
BASE_IMAGE = BASE_IMAGE.replace("nvcr.io/nvidia/", "urm.nvidia.com/docker/")
290-
TRITON_IMAGE = TRITON_IMAGE.replace("nvcr.io/nvidia/", "urm.nvidia.com/docker/")
289+
BASE_IMAGE = BASE_IMAGE.replace("nvcr.io/", "urm.nvidia.com/docker/")
290+
TRITON_IMAGE = TRITON_IMAGE.replace("nvcr.io/", "urm.nvidia.com/docker/")
291291

292292
if (dependent) {
293293
stage ("make ${dependent.target}_${action} (${arch})") {

0 commit comments

Comments
 (0)