mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 00:36:51 +00:00
10 lines
256 B
Docker
10 lines
256 B
Docker
|
# escape=`
|
||
|
|
||
|
FROM 'mcr.microsoft.com/windows/servercore:1607'
|
||
|
|
||
|
# Make sure any failure in PowerShell scripts is fatal
|
||
|
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop';"]
|
||
|
|
||
|
COPY prepare.ps1 cleanup.ps1 C:\
|
||
|
RUN C:\prepare.ps1 ; C:\cleanup.ps1
|