Allow build with host network

This commit is contained in:
benjibc 2025-01-13 21:44:26 +00:00
parent 78727aad26
commit c01a89c0e8
3 changed files with 16 additions and 1 deletions

View file

@ -120,6 +120,7 @@ def build_image(build_config: BuildConfig, build_file_path: Path):
docker_image,
str(build_file_path),
str(BUILDS_BASE_DIR / ImageType.docker.value),
"--use-host-network" if build_config.use_host_network else "",
" ".join(normal_deps),
]
elif build_config.image_type == ImageType.conda.value: