mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
5c0ad2facd
We set the env var as the shell of the image, but looks like the gitlab runner is overriding that.
13 lines
329 B
Docker
13 lines
329 B
Docker
# escape=`
|
|
|
|
FROM 'mcr.microsoft.com/windows/servercore:1809'
|
|
|
|
# Make sure any failure in PowerShell scripts is fatal
|
|
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop';"]
|
|
ENV ErrorActionPreference='Stop'
|
|
|
|
COPY install_toolchain.ps1 prepare_gst_env.ps1 C:\
|
|
|
|
RUN C:\install_toolchain.ps1
|
|
|
|
RUN C:\prepare_gst_env.ps1
|