From e287d869feb33cceeb32fd2fc43d0710b1aff8f8 Mon Sep 17 00:00:00 2001 From: johndoe6345789 Date: Mon, 16 Mar 2026 00:40:50 +0000 Subject: [PATCH] fix(ci): use --network=host for Docker base image builds Allows build containers to reach npm registries and local registries on the host network. Co-Authored-By: Claude Opus 4.6 (1M context) --- deployment/build-base-images.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/deployment/build-base-images.sh b/deployment/build-base-images.sh index 844c199da..d7b7e7886 100755 --- a/deployment/build-base-images.sh +++ b/deployment/build-base-images.sh @@ -60,6 +60,7 @@ build_with_retry() { for i in $(seq 1 $max); do if docker build \ + --network=host \ --file "$BASE_DIR/$dockerfile" \ --tag "$tag" \ --tag "${tag%:*}:$(date +%Y%m%d)" \