Advertisement
Guest User

TVTest Build Enviroment

a guest
Jan 31st, 2019
972
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. # escape=`
  2.  
  3. FROM tetsurom/vctools:recommended-15.9.2 AS addsdk
  4.  
  5. # Windows10 SDK 15063と16299を追加する
  6. RUN C:\TEMP\Install.cmd C:\TEMP\vs_buildtools.exe --quiet --wait --norestart --nocache `
  7. --installPath C:\BuildTools `
  8. --channelUri C:\TEMP\VisualStudio.chman `
  9. --installChannelUri C:\TEMP\VisualStudio.chman `
  10. --add Microsoft.VisualStudio.Component.Windows10SDK.15063.Desktop `
  11. --add Microsoft.VisualStudio.Component.Windows10SDK.16299.Desktop
  12.  
  13.  
  14. FROM addsdk AS addgit
  15.  
  16. # Git for Windowsを追加する
  17. 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
  18.  
  19. 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