From f83fcb8f9d1a8613217b74231075486c9fcff02c Mon Sep 17 00:00:00 2001 From: "Ruben D." Date: Tue, 11 Jun 2024 14:52:47 +0200 Subject: [PATCH] fix: Added network=host flag to docker build --- dockerize.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerize.sh b/dockerize.sh index cd60cc0..92048bd 100644 --- a/dockerize.sh +++ b/dockerize.sh @@ -1,2 +1,2 @@ #!/bin/bash -docker image build --pull --file './Dockerfile' --tag 'solidtrustflows:latest' --label 'com.microsoft.created-by=visual-studio-code' ./ +docker image build --pull --file './Dockerfile' --tag 'solidtrustflows:latest' --label 'com.microsoft.created-by=visual-studio-code' --network=host ./