Build:
  1. 0
2026-05-10 12:16.06: New job: Build using windows-x86_64 in
                                [https://github.com/ocaml/opam-repository#master (fc08333d1ba03c1ffbc960479a92aa94085c5f78)]
2026-05-10 12:16.06: Will push staging image to ocurrent/opam-staging:windows-server-msvc-ltsc2022-opam-amd64

Dockerfile:

# escape=`

# Autogenerated by OCaml-Dockerfile scripts
FROM mcr.microsoft.com/windows/server:10.0.20348.5020 AS winget-builder
USER ContainerAdministrator
ADD [ "https://github.com/microsoft/winget-cli/releases/latest/download/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle", "C:\\TEMP\\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.zip" ]
RUN powershell -Command "Expand-Archive -LiteralPath C:\TEMP\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.zip -DestinationPath C:\TEMP\winget-cli -Force"
RUN ren C:\TEMP\winget-cli\AppInstaller_x64.msix AppInstaller_x64.zip
RUN powershell -Command "Expand-Archive -LiteralPath C:\TEMP\winget-cli\AppInstaller_x64.zip -DestinationPath C:\TEMP\winget-cli\ -Force"
RUN mkdir "C:\Program Files\winget-cli" && `
  move "C:\TEMP\winget-cli\\winget.exe" "C:\Program Files\winget-cli\" && `
  move "C:\TEMP\winget-cli\\WindowsPackageManager.dll" "C:\Program Files\winget-cli\" && `
  move "C:\TEMP\winget-cli\\resources.pri" "C:\Program Files\winget-cli\"

FROM mcr.microsoft.com/windows/server:10.0.20348.5020 AS cygwin-msvc
USER ContainerAdministrator
RUN for /f "tokens=1,2,*" %a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path ^| findstr /r "\\$"') do `
          for /f "delims=" %l in ('cmd /v:on /c "set v=%c&& echo !v:~0,-1!"') do `
            reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path /t REG_EXPAND_SZ /f /d "%l"
ADD [ "https://raw.githubusercontent.com/ocurrent/ocaml-dockerfile/master/src-opam/Install.cmd", "C:\\TEMP\\" ]
ADD [ "https://aka.ms/vscollect.exe", "C:\\TEMP\\collect.exe" ]
ADD [ "https://aka.ms/vs/17/release/channel", "C:\\TEMP\\VisualStudio.chman" ]
RUN curl -SL --output C:\TEMP\vs_buildtools.exe https://aka.ms/vs/17/release/vs_buildtools.exe `
    && (call C:\TEMP\Install.cmd C:\TEMP\vs_buildtools.exe --quiet --wait --norestart --nocache install `
        --installPath "%ProgramFiles(x86)%\Microsoft Visual Studio\2022\BuildTools" `
        --channelUri C:\TEMP\VisualStudio.chman `
        --installChannelUri C:\TEMP\VisualStudio.chman `
        --add Microsoft.VisualStudio.Workload.VCTools `
        --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 `
        --add Microsoft.VisualStudio.Component.Windows11SDK.22621 `
        --remove Microsoft.VisualStudio.Component.Windows10SDK.10240 `
        --remove Microsoft.VisualStudio.Component.Windows10SDK.10586 `
        --remove Microsoft.VisualStudio.Component.Windows10SDK.14393 `
        --remove Microsoft.VisualStudio.Component.Windows81SDK) `
    && del /q C:\TEMP\vs_buildtools.exe
ENV CYGWIN="nodosfilewarning winsymlinks:native"
RUN for /f "tokens=1,2,*" %a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path ^| findstr /r "^[^H]"') do `
        reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path /t REG_EXPAND_SZ /f /d "C:\cygwin64\bin;%c"
ADD [ "https://www.cygwin.com/setup-x86_64.exe", "C:\\cygwin64\\setup-x86_64.exe" ]
RUN mkdir C:\cygwin64\lib\cygsympathy && mkdir C:\cygwin64\etc\postinstall
ADD [ "https://raw.githubusercontent.com/metastack/cygsympathy/master/cygsympathy.cmd", "C:\\cygwin64\\lib\\cygsympathy\\" ]
ADD [ "https://raw.githubusercontent.com/metastack/cygsympathy/master/cygsympathy.sh", "C:\\cygwin64\\lib\\cygsympathy\\cygsympathy" ]
RUN mklink C:\cygwin64\etc\postinstall\zp_zcygsympathy.sh C:\cygwin64\lib\cygsympathy\cygsympathy
RUN C:\cygwin64\setup-x86_64.exe --quiet-mode --no-shortcuts --no-startmenu --no-desktop --only-site --local-package-dir C:\TEMP\cache --root C:\cygwin64 --site https://mirrors.kernel.org/sourceware/cygwin/ --symlink-type=native --packages diffutils,git,make,patch && `
  powershell -Command "Remove-Item 'C:\TEMP' -Recurse"
ADD [ "https://github.com/metastack/msvs-tools/archive/refs/heads/master.tar.gz", "C:\\TEMP\\msvs-tools.tar.gz" ]
RUN C:\cygwin64\bin\bash.exe --login -c "cd /tmp && tar -xf /cygdrive/c/TEMP/msvs-tools.tar.gz && cp msvs-tools-master/msvs-detect msvs-tools-master/msvs-promote-path /bin && rm -rf /cygdrive/c/TEMP/msvs-tools/*"
RUN awk -i inplace "/(^#)|(^$)/{print;next}{$4=""noacl,""$4; print}" C:\cygwin64\etc\fstab

FROM cygwin-msvc AS opam-builder
ENV HOME="C:\cygwin64\home\opam"
RUN C:\cygwin64\bin\bash.exe --login -c "git config --global user.email 'docker@example.com' && git config --global user.name 'Docker' && git config --system core.longpaths true && git config --global --add safe.directory /tmp/opam-sources"
RUN C:\cygwin64\bin\bash.exe --login -c "git clone https://github.com/ocaml/opam /tmp/opam && cd /tmp/opam && git checkout 1ea21b460db391ba6f8fb727ee296a86f65579e2 && sed -i \"s/make -j[0-9]*/make -j\$NUMBER_OF_PROCESSORS/g\" shell/bootstrap-ocaml.sh && make compiler OCAML_PORT=msvc64"
RUN C:\cygwin64\bin\bash.exe --login -c "git clone /tmp/opam /tmp/opam-build-2.2 && cd /tmp/opam-build-2.2 && git config --global --add safe.directory /tmp/opam-build-2.2 && git checkout 01e9a24a61e23e42d513b4b775d8c30c807439b2"
RUN C:\cygwin64\bin\bash.exe --login -c "cd /tmp/opam-build-2.2 && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" ./configure --enable-cold-check  --with-vendored-deps --with-0install-solver && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" make && make install && mv /usr/local/bin/opam.exe /usr/local/bin/opam-2.2.exe"
RUN C:\cygwin64\bin\bash.exe --login -c "git clone /tmp/opam /tmp/opam-build-2.3 && cd /tmp/opam-build-2.3 && git config --global --add safe.directory /tmp/opam-build-2.3 && git checkout 35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724"
RUN C:\cygwin64\bin\bash.exe --login -c "cd /tmp/opam-build-2.3 && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" ./configure --enable-cold-check  --with-vendored-deps --with-0install-solver && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" make && make install && mv /usr/local/bin/opam.exe /usr/local/bin/opam-2.3.exe"
RUN C:\cygwin64\bin\bash.exe --login -c "git clone /tmp/opam /tmp/opam-build-2.4 && cd /tmp/opam-build-2.4 && git config --global --add safe.directory /tmp/opam-build-2.4 && git checkout 7c92631391984f698f31ee24f3ae4dc1cd3698ff"
RUN C:\cygwin64\bin\bash.exe --login -c "cd /tmp/opam-build-2.4 && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" ./configure --enable-cold-check  --with-vendored-deps --with-0install-solver && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" make && make install && mv /usr/local/bin/opam.exe /usr/local/bin/opam-2.4.exe"
RUN C:\cygwin64\bin\bash.exe --login -c "git clone /tmp/opam /tmp/opam-build-2.5 && cd /tmp/opam-build-2.5 && git config --global --add safe.directory /tmp/opam-build-2.5 && git checkout 6218d0c4c022106034a93c8ecb5b80fa213d7356"
RUN C:\cygwin64\bin\bash.exe --login -c "cd /tmp/opam-build-2.5 && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" ./configure --enable-cold-check  --with-vendored-deps --with-0install-solver && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" make && make install && mv /usr/local/bin/opam.exe /usr/local/bin/opam-2.5.exe"
RUN C:\cygwin64\bin\bash.exe --login -c "git clone /tmp/opam /tmp/opam-build-master && cd /tmp/opam-build-master && git config --global --add safe.directory /tmp/opam-build-master && git checkout 1ea21b460db391ba6f8fb727ee296a86f65579e2"
RUN C:\cygwin64\bin\bash.exe --login -c "cd /tmp/opam-build-master && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" ./configure --enable-cold-check  --with-vendored-deps --with-0install-solver && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" make && make install && mv /usr/local/bin/opam.exe /usr/local/bin/opam-master.exe"

FROM cygwin-msvc
LABEL distro_style="windows"
USER ContainerAdministrator
RUN C:\cygwin64\setup-x86_64.exe --quiet-mode --no-shortcuts --no-startmenu --no-desktop --only-site --local-package-dir C:\TEMP\cache --root C:\cygwin64 --site https://mirrors.kernel.org/sourceware/cygwin/ --symlink-type=native --packages curl,diffutils,git,m4,make,patch,perl,rsync,unzip && `
  powershell -Command "Remove-Item 'C:\TEMP' -Recurse"
ADD [ "https://aka.ms/vs/17/release/vc_redist.x64.exe", "C:\\TEMP\\" ]
RUN C:\TEMP\vc_redist.x64.exe /install /passive /norestart /log C:\TEMP\vc_redist.log && `
  powershell -Command "Remove-Item 'C:\TEMP' -Recurse"
COPY --from=winget-builder [ "C:\\Program Files\\winget-cli", "C:\\Program Files\\winget-cli" ]
RUN for /f "tokens=1,2,*" %a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path ^| findstr /r "^[^H]"') do `
        reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path /t REG_EXPAND_SZ /f /d "C:\Program Files\winget-cli;%c"
RUN powershell -Command "$path=(Join-Path $env:LOCALAPPDATA 'Packages\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe\LocalState'); New-Item $path -ItemType Directory -Force; '{ """"$schema"""": """"https://aka.ms/winget-settings.schema.json"""", """"telemetry"""": { """"disable"""": """"true"""" } }' | Out-File -encoding ASCII (Join-Path $path 'settings.json')"
RUN winget install --exact --accept-source-agreements --accept-package-agreements Git.Git
COPY --from=opam-builder [ "C:\\cygwin64\\usr\\local\\bin\\opam-2.2.exe", "C:\\opam-2.2.exe" ]
RUN move C:\opam-2.2.exe C:\cygwin64\usr\local\bin
COPY --from=opam-builder [ "C:\\cygwin64\\usr\\local\\bin\\opam-2.3.exe", "C:\\opam-2.3.exe" ]
RUN move C:\opam-2.3.exe C:\cygwin64\usr\local\bin
COPY --from=opam-builder [ "C:\\cygwin64\\usr\\local\\bin\\opam-2.4.exe", "C:\\opam-2.4.exe" ]
RUN move C:\opam-2.4.exe C:\cygwin64\usr\local\bin
COPY --from=opam-builder [ "C:\\cygwin64\\usr\\local\\bin\\opam-2.5.exe", "C:\\opam-2.5.exe" ]
RUN move C:\opam-2.5.exe C:\cygwin64\usr\local\bin
COPY --from=opam-builder [ "C:\\cygwin64\\usr\\local\\bin\\opam-master.exe", "C:\\opam-dev.exe" ]
RUN move C:\opam-dev.exe C:\cygwin64\usr\local\bin
RUN powershell -Command "[Environment]::GetEnvironmentVariable('PATH', 'Machine')" > C:\path_before.txt
RUN call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" amd64 && set > C:\msvc_env.txt
RUN powershell -Command "$before = (Get-Content C:\path_before.txt).Trim(); $content = Get-Content C:\msvc_env.txt; foreach ($line in $content) { if ($line -match '^(INCLUDE|LIB|LIBPATH)=(.*)$') { [Environment]::SetEnvironmentVariable($matches[1], $matches[2], 'Machine') } elseif ($line -match '^PATH=(.*)$') { $vcPath = $matches[1]; $msvcPaths = ($vcPath -split ';' | Where-Object { $before -notlike \"*$_*\" -and $_ -ne '' }) -join ';'; $finalPath = \"$msvcPaths;C:\cygwin64\usr\local\bin;C:\cygwin64\bin;$before\"; [Environment]::SetEnvironmentVariable('PATH', $finalPath, 'Machine') } }"
RUN del C:\path_before.txt C:\msvc_env.txt
RUN mklink C:\cygwin64\usr\local\bin\opam.exe C:\cygwin64\usr\local\bin\opam-2.2.exe
WORKDIR C:\cygwin64\home\opam
ENV HOME="C:\cygwin64\home\opam"
RUN C:\cygwin64\bin\bash.exe --login -c "git config --global user.email 'docker@example.com' && git config --global user.name 'Docker' && git config --system core.longpaths true && git config --global --add safe.directory /home/opam/opam-repository"
COPY [ ".", "C:\\cygwin64\\home\\opam\\opam-repository" ]
ENV OPAMROOT="C:\opam\.opam"
RUN opam init -k git -a "C:\cygwin64\home\opam\opam-repository" --bare --disable-sandboxing
RUN C:\cygwin64\bin\bash.exe --login -c "rm -rf /cygdrive/c/opam/.opam/repo/default/.git"
COPY [ "Dockerfile", "/Dockerfile.opam" ]


2026-05-10 12:16.06: Using cache hint "opam-windows-server-msvc-ltsc2022"
2026-05-10 12:16.06: Waiting for worker…
2026-05-10 12:16.06: Got resource from pool OCluster
Building on ltsc2025-1
All commits already cached
HEAD is now at fc08333d1b Merge pull request #29875 from ocaml/mseri-patch-3


------------------------------------------------------------------------------

               Total    Copied   Skipped  Mismatch    FAILED    Extras
    Dirs :     56796     56796         0         0         0         0
   Files :     60818     60818         0         0         0         0
   Bytes :  227.53 m  227.53 m         0         0         0         0
   Times :   0:05:04   0:03:28                       0:00:00   0:01:35


   Speed :           1,145,069 Bytes/sec.
   Speed :              65.521 MegaBytes/min.
   Ended : Sunday, May 10, 2026 12:22:33 PM

Sending build context to Docker daemon  372.6MB

Step 1/72 : FROM mcr.microsoft.com/windows/server:10.0.20348.5020 AS winget-builder
10.0.20348.5020: Pulling from windows/server
Digest: sha256:4e2ca3ffa1e8fc4dba682b73da11f778ea0cdf3a5099db6ea52f8036a2d594e5
Status: Downloaded newer image for mcr.microsoft.com/windows/server:10.0.20348.5020
 ---> e55a87316d44
Step 2/72 : USER ContainerAdministrator
 ---> Running in 9ef0bdecf563
 ---> Removed intermediate container 9ef0bdecf563
 ---> 61a3e3f34304
Step 3/72 : ADD [ "https://github.com/microsoft/winget-cli/releases/latest/download/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle", "C:\\TEMP\\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.zip" ]


 ---> 8efc1464b3f9
Step 4/72 : RUN powershell -Command "Expand-Archive -LiteralPath C:\TEMP\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.zip -DestinationPath C:\TEMP\winget-cli -Force"
 ---> Running in 19bf1412a1ff
 ---> Removed intermediate container 19bf1412a1ff
 ---> 9acc17ee7bd0
Step 5/72 : RUN ren C:\TEMP\winget-cli\AppInstaller_x64.msix AppInstaller_x64.zip
 ---> Running in fd1d4ccc1f75
 ---> Removed intermediate container fd1d4ccc1f75
 ---> 4eefd9e32865
Step 6/72 : RUN powershell -Command "Expand-Archive -LiteralPath C:\TEMP\winget-cli\AppInstaller_x64.zip -DestinationPath C:\TEMP\winget-cli\ -Force"
 ---> Running in 2ba14daf1afd
 ---> Removed intermediate container 2ba14daf1afd
 ---> 0c18c9f1f50e
Step 7/72 : RUN mkdir "C:\Program Files\winget-cli" &&   move "C:\TEMP\winget-cli\\winget.exe" "C:\Program Files\winget-cli\" &&   move "C:\TEMP\winget-cli\\WindowsPackageManager.dll" "C:\Program Files\winget-cli\" &&   move "C:\TEMP\winget-cli\\resources.pri" "C:\Program Files\winget-cli\"
 ---> Running in 72cc1bd1c2ba
        1 file(s) moved.
        1 file(s) moved.
        1 file(s) moved.
 ---> Removed intermediate container 72cc1bd1c2ba
 ---> 02a424a1c308
Step 8/72 : FROM mcr.microsoft.com/windows/server:10.0.20348.5020 AS cygwin-msvc
10.0.20348.5020: Pulling from windows/server
Digest: sha256:4e2ca3ffa1e8fc4dba682b73da11f778ea0cdf3a5099db6ea52f8036a2d594e5
Status: Image is up to date for mcr.microsoft.com/windows/server:10.0.20348.5020
 ---> e55a87316d44
Step 9/72 : USER ContainerAdministrator
 ---> Using cache
 ---> 61a3e3f34304
Step 10/72 : RUN for /f "tokens=1,2,*" %a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path ^| findstr /r "\\$"') do           for /f "delims=" %l in ('cmd /v:on /c "set v=%c&& echo !v:~0,-1!"') do             reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path /t REG_EXPAND_SZ /f /d "%l"
 ---> Running in 172af15db363

C:\>for /F "delims=" %l in ('cmd /v:on /c "set v=%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;%SYSTEMROOT%\System32\OpenSSH\&& echo !v:~0,-1!"') do reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path /t REG_EXPAND_SZ /f /d "%l" 

C:\>reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path /t REG_EXPAND_SZ /f /d "C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH" 
The operation completed successfully.

 ---> Removed intermediate container 172af15db363
 ---> c2c94d966a74
Step 11/72 : ADD [ "https://raw.githubusercontent.com/ocurrent/ocaml-dockerfile/master/src-opam/Install.cmd", "C:\\TEMP\\" ]

 ---> 71bc1c3a2ad1
Step 12/72 : ADD [ "https://aka.ms/vscollect.exe", "C:\\TEMP\\collect.exe" ]

 ---> 11e072a699f0
Step 13/72 : ADD [ "https://aka.ms/vs/17/release/channel", "C:\\TEMP\\VisualStudio.chman" ]

 ---> 9d2fee9a7d8e
Step 14/72 : RUN curl -SL --output C:\TEMP\vs_buildtools.exe https://aka.ms/vs/17/release/vs_buildtools.exe     && (call C:\TEMP\Install.cmd C:\TEMP\vs_buildtools.exe --quiet --wait --norestart --nocache install         --installPath "%ProgramFiles(x86)%\Microsoft Visual Studio\2022\BuildTools"         --channelUri C:\TEMP\VisualStudio.chman         --installChannelUri C:\TEMP\VisualStudio.chman         --add Microsoft.VisualStudio.Workload.VCTools         --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64         --add Microsoft.VisualStudio.Component.Windows11SDK.22621         --remove Microsoft.VisualStudio.Component.Windows10SDK.10240         --remove Microsoft.VisualStudio.Component.Windows10SDK.10586         --remove Microsoft.VisualStudio.Component.Windows10SDK.14393         --remove Microsoft.VisualStudio.Component.Windows81SDK)     && del /q C:\TEMP\vs_buildtools.exe
 ---> Running in 7639bcfed086
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:--  0:00:01 --:--:--     0

 62 4353k   62 2710k    0     0  1780k      0  0:00:02  0:00:01  0:00:01 1780k
100 4353k  100 4353k    0     0  2765k      0  0:00:01  0:00:01 --:--:-- 30.8M
Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\HelpFile\1033\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\HelpFile\1045\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\HelpFile\1040\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\HelpFile\2052\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\HelpFile\1028\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\HelpFile\1029\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\HelpFile\1046\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\HelpFile\1055\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\HelpFile\1042\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\HelpFile\3082\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\HelpFile\1031\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\HelpFile\1041\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\HelpFile\1049\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\HelpFile\1036\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\vs_setup_bootstrapper.exe...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\Microsoft.C2RSignatureReader.Interop.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\Microsoft.C2RSignatureReader.Native.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\Microsoft.Identity.Client.Broker.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\Microsoft.Identity.Client.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\Microsoft.Identity.Client.Extensions.Msal.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\Microsoft.Identity.Client.NativeInterop.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\Microsoft.IdentityModel.Abstractions.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\Microsoft.VisualStudio.RemoteControl.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\Microsoft.VisualStudio.Setup.Common.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\Microsoft.VisualStudio.Setup.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\Microsoft.VisualStudio.Setup.Download.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\Microsoft.VisualStudio.Telemetry.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\Microsoft.VisualStudio.Utilities.Internal.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\runtimes\win-x64\native\msalruntime.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\runtimes\win-arm64\native\msalruntime_arm64.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\runtimes\win-x86\native\msalruntime_x86.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\Newtonsoft.Json.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\System.Memory.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\System.Runtime.CompilerServices.Unsafe.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\VSInstallerElevationService.Contracts.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\zh-Hant\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\pt-BR\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\de\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\fr\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\ko\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\it\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\cs\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\ja\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\zh-Hans\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\tr\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\es\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\pl\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\ru\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\vs_setup_bootstrapper.config...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\vs_setup_bootstrapper.exe.config...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\detection.json...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cb5de9ec7ce87dce7cb25aaf\vs_bootstrapper_d15\vs_setup_bootstrapper.json...

docker-build failed with exit-code 1
2026-05-10 13:22.33: Job failed: Failed: Build failed