From 3b60d38e42328d41f396c15ae646090e8da1c566 Mon Sep 17 00:00:00 2001 From: Olof Pettersson Date: Tue, 2 Dec 2025 10:30:07 +0100 Subject: [PATCH] Use host network --- build-base.sh | 1 + build-windows.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/build-base.sh b/build-base.sh index bc11974..ee31b26 100644 --- a/build-base.sh +++ b/build-base.sh @@ -27,6 +27,7 @@ echo "⚠️ Cache Miss. Building new base image..." buildah build \ --tls-verify=false \ --storage-driver=vfs \ + --network=host \ -f Dockerfile.base \ -t "$FULL_TAG" \ -t "$LATEST_TAG" \ diff --git a/build-windows.sh b/build-windows.sh index 952e03d..095b6be 100644 --- a/build-windows.sh +++ b/build-windows.sh @@ -32,6 +32,7 @@ echo "---------------------------------------" buildah build \ --tls-verify=false \ --storage-driver=vfs \ + --network=host \ --build-arg img_version=custom \ -f Dockerfile.windows \ -t "$WIN_TAG" \