From 0b1c22b0fa0f52ef53e9f61bdd17e6263762edcf Mon Sep 17 00:00:00 2001 From: Aofei Sheng Date: Wed, 18 Dec 2024 10:42:03 +0800 Subject: [PATCH] chore(pr-preview): switch go base image source to internal registry (#1151) Signed-off-by: Aofei Sheng --- scripts/pr-preview.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/pr-preview.sh b/scripts/pr-preview.sh index 3a3dd09cb..54d9905cd 100755 --- a/scripts/pr-preview.sh +++ b/scripts/pr-preview.sh @@ -17,6 +17,7 @@ docker build \ -f ./Dockerfile \ -t "${CONTAINER_IMAGE}" \ --build-arg GOP_BASE_IMAGE="${GOPLUS_REGISTRY_REPO}/gop:1.2" \ + --build-arg GO_BASE_IMAGE="${GOPLUS_REGISTRY_REPO}/golang:1.23.4" \ --build-arg NODE_BASE_IMAGE="${GOPLUS_REGISTRY_REPO}/node:20.11.1" \ --build-arg NGINX_BASE_IMAGE="${GOPLUS_REGISTRY_REPO}/nginx:1.27" \ --build-arg GOPROXY=https://goproxy.cn,direct \