From 2bc03e18cfdd7854645b664bbf24f02ca24c9505 Mon Sep 17 00:00:00 2001 From: Chris Culy Date: Tue, 31 Oct 2023 15:00:23 -0500 Subject: [PATCH] Add MSVC components needed for building Sinai/LogosCompiler/DLN. (#2) --- windows/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/windows/Dockerfile b/windows/Dockerfile index 9deab0e..1274207 100644 --- a/windows/Dockerfile +++ b/windows/Dockerfile @@ -17,6 +17,8 @@ RUN ` && start /w vs_BuildTools modify ^ ` --installPath "%ProgramFiles(x86)%\Microsoft Visual Studio\2022\BuildTools" ^ ` --add Microsoft.VisualStudio.Workload.VCTools ^ ` + --add Microsoft.VisualStudio.Component.VC.14.30.17.0.x86.x64 ^ ` + --add Microsoft.VisualStudio.Component.VC.14.30.17.0.ATL ^ ` --quiet --includeRecommended --norestart --nocache --wait ` && powershell -Command "if ($err = dir $Env:TEMP -Filter dd_setup_*_errors.log | where Length -gt 0 | Get-Content) { throw $err }" ` && del vs_BuildTools.exe `