From 162b82ea0129fe7aa96695d72c8192ff4675c85f Mon Sep 17 00:00:00 2001 From: Misha Chornyi Date: Thu, 9 Nov 2023 15:27:14 -0800 Subject: [PATCH] Check that the wget is installed --- build.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.py b/build.py index 811a0c81ef..76670d853d 100755 --- a/build.py +++ b/build.py @@ -1024,6 +1024,7 @@ def create_dockerfile_buildbase(ddir, dockerfile_name, argmap): libarchive-dev \ libxml2-dev \ libnuma-dev && \ + wget \ rm -rf /var/lib/apt/lists/* RUN pip3 install --upgrade pip && \ @@ -1255,6 +1256,7 @@ def dockerfile_prepare_container_linux(argmap, backends, enable_gpu, target_mach libnuma-dev \ curl \ libjemalloc-dev \ + wget \ {backend_dependencies} && \ rm -rf /var/lib/apt/lists/*