This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# escape=` | |
FROM mcr.microsoft.com/windows/servercore:ltsc2019 AS builder | |
SHELL ["cmd", "/S", "/C"] | |
RUN mkdir C:\TEMP | |
ADD https://aka.ms/vs/17/release/vs_buildtools.exe C:\TEMP\vs_buildtools.exe | |
RUN C:\TEMP\vs_buildtools.exe --quiet --wait --norestart ` |