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