From 05f9f001c1e7d41678c43b8e1ba5a532c215845a Mon Sep 17 00:00:00 2001 From: Misha Chornyi <99709299+mc-nv@users.noreply.github.com> Date: Tue, 14 Jan 2025 13:55:20 -0800 Subject: [PATCH] Install python build package inside Winbase build container (#7934) --- build.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.py b/build.py index 1cd03f5e99..15bff402a4 100755 --- a/build.py +++ b/build.py @@ -1048,6 +1048,8 @@ def create_dockerfile_buildbase(ddir, dockerfile_name, argmap): # Install the windows- or linux-specific buildbase dependencies if target_platform() == "windows": df += """ +RUN python3 -m pip install build + SHELL ["cmd", "/S", "/C"] """ else: