fix logging v4
Build Mumble Web 2 release builder containers / windows-release-builder-container-build (push) Successful in 1m13s

This commit is contained in:
2025-12-02 16:54:39 -07:00
parent 613482e387
commit 467940f3f9
+3 -10
View File
@@ -11,20 +11,13 @@ FROM mcr.microsoft.com/windows/servercore:10.0.26100.7171
SHELL ["cmd", "/S", "/C"]
RUN `
curl -SL --output vs_buildtools.exe https://aka.ms/vs/17/release/vs_buildtools.exe `
`
&& (start /w vs_buildtools.exe --quiet --wait --norestart --nocache `
RUN curl -SL --output vs_buildtools.exe https://aka.ms/vs/17/release/vs_buildtools.exe `
&& ( start /w vs_buildtools.exe --quiet --wait --norestart --nocache `
--installPath "%ProgramFiles(x86)%\Microsoft Visual Studio\2022\BuildTools" `
--add Microsoft.VisualStudio.Workload.NativeDesktop `
|| IF "%ERRORLEVEL%"=="3010" EXIT 0) `
`
REM Echo any Visual Studio installer logs from %TEMP% to Docker output `
|| IF "%ERRORLEVEL%"=="3010" EXIT 0 ) `
&& for %F in ("%TEMP%\dd_*.log") do @echo ===== %F ===== & type "%F" `
`
REM Optional: delete the logs to save space `
&& del /Q "%TEMP%\dd_*.log" `
`
&& del /Q vs_buildtools.exe
# Define the entry point for the docker container.