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" \