ci/vs2019: There is no meaning to set $env:ErrorActionPreference
[platform/upstream/mesa.git] / .gitlab-ci / windows / Dockerfile_build
1 # escape=`
2
3 FROM mcr.microsoft.com/windows/server:ltsc2022
4
5 # Make sure any failure in PowerShell scripts is fatal
6 SHELL ["powershell", "-ExecutionPolicy", "RemoteSigned", "-Command", "$ErrorActionPreference = 'Stop';"]
7
8 COPY mesa_deps_vs2019.ps1 C:\
9 RUN C:\mesa_deps_vs2019.ps1
10
11 COPY mesa_deps_build.ps1 C:\
12 RUN C:\mesa_deps_build.ps1