Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # escape=`
- FROM tetsurom/vctools:recommended-15.9.2 AS addsdk
- # Windows10 SDK 15063と16299を追加する
- RUN C:\TEMP\Install.cmd C:\TEMP\vs_buildtools.exe --quiet --wait --norestart --nocache `
- --installPath C:\BuildTools `
- --channelUri C:\TEMP\VisualStudio.chman `
- --installChannelUri C:\TEMP\VisualStudio.chman `
- --add Microsoft.VisualStudio.Component.Windows10SDK.15063.Desktop `
- --add Microsoft.VisualStudio.Component.Windows10SDK.16299.Desktop
- FROM addsdk AS addgit
- # Git for Windowsを追加する
- ADD https://github.com/git-for-windows/git/releases/download/v2.20.1.windows.1/Git-2.20.1-64-bit.exe C:\TEMP\git-install.exe
- RUN C:\TEMP\git-install.exe /VERYSILENT /NORESTART /NOCANCEL /SP- /CLOSEAPPLICATIONS /RESTARTAPPLICATIONS /COMPONENTS="ext" /GitAndUnixToolsOnPath
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement