packaging are installed because python 3.12 need it Install of vulkan-sdk improved so that it's can be running in non-docker environment Now vulkan-sdk have separate script so that it can be updated without update MSVC THe choco installed packages is almost freeze to update, so split install of vulkan sdk out of it for avoid update it when update VULKAN_SDK_VERSION on local computer --params="/InstallDir:C:\python3" won't take effect, drop it for not misleading Signed-off-by: Yonggang Luo <luoyonggang@gmail.com> Reviewed-by: Jesse Natalie <jenatali@microsoft.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26736>
11 lines
168 B
Plaintext
11 lines
168 B
Plaintext
# escape=`
|
|
|
|
ARG base_image
|
|
FROM ${base_image}
|
|
|
|
COPY mesa_deps_vulkan_sdk.ps1 C:\
|
|
RUN C:\mesa_deps_vulkan_sdk.ps1
|
|
|
|
COPY mesa_deps_test.ps1 C:\
|
|
RUN C:\mesa_deps_test.ps1
|