Home | History | Annotate | Line # | Download | only in windows
      1 # escape=`
      2 
      3 FROM mcr.microsoft.com/windows:1809
      4 
      5 # Make sure any failure in PowerShell scripts is fatal
      6 SHELL ["powershell", "-ExecutionPolicy", "RemoteSigned", "-Command", "$ErrorActionPreference = 'Stop';"]
      7 ENV ErrorActionPreference='Stop'
      8 
      9 COPY mesa_deps_vs2019.ps1 C:\
     10 RUN C:\mesa_deps_vs2019.ps1
     11 
     12 COPY mesa_deps.ps1 C:\
     13 RUN C:\mesa_deps.ps1
     14