mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 05:59:10 +00:00
df6ebdeaaf
Move them into a seperate script to avoid needing to refresh the env, and make it simpler. Adapted from patches by Xavier Claessens!
15 lines
381 B
Docker
15 lines
381 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_choco.ps1 C:\
|
|
RUN C:\install_choco.ps1
|
|
|
|
COPY install_toolchain.ps1 prepare_gst_env.ps1 C:\
|
|
RUN C:\install_toolchain.ps1
|
|
|
|
RUN C:\prepare_gst_env.ps1
|