mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-12-11 11:15:11 +08:00
7f81333f71
Acked-by: Daniel Stone <daniels@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16756>
14 lines
369 B
Plaintext
14 lines
369 B
Plaintext
# escape=`
|
|
|
|
FROM mcr.microsoft.com/windows/server:ltsc2022
|
|
|
|
# Make sure any failure in PowerShell scripts is fatal
|
|
SHELL ["powershell", "-ExecutionPolicy", "RemoteSigned", "-Command", "$ErrorActionPreference = 'Stop';"]
|
|
ENV ErrorActionPreference='Stop'
|
|
|
|
COPY mesa_deps_vs2019.ps1 C:\
|
|
RUN C:\mesa_deps_vs2019.ps1
|
|
|
|
COPY mesa_deps_build.ps1 C:\
|
|
RUN C:\mesa_deps_build.ps1
|