GstPipelineStudio/ci/windows-docker/Dockerfile

30 lines
1.1 KiB
Docker
Raw Normal View History

2022-11-14 13:40:53 +00:00
# escape=`
FROM "registry.freedesktop.org/gstreamer/gstreamer/amd64/windows:2023-04-03.0-main"
2022-11-14 13:40:53 +00:00
# Make sure any failure in PowerShell is fatal
ENV ErrorActionPreference='Stop'
SHELL ["powershell","-NoLogo", "-NonInteractive", "-Command"]
ARG DEFAULT_GST_BRANCH="1.22"
ARG DEFAULT_GTK_BRANCH="4.8.2"
ARG DEFAULT_PANGO_BRANCH="1.50.14"
2022-11-14 13:40:53 +00:00
ARG RUST_VERSION="invalid"
RUN choco install -y pkgconfiglite nasm llvm
# https://stackoverflow.com/a/50716450
RUN setx PATH '%PATH%;C:\Program Files\NASM;C:\gst-install\bin;c:\Program Files\gettext-iconv\bin'
ENV PKG_CONFIG_PATH="C:\gst-install\lib\pkgconfig"
COPY install_pango.ps1 install_gst.ps1 install_gtk.ps1 C:\
RUN C:\install_pango.ps1
RUN C:\install_gst.ps1
RUN C:\install_gtk.ps1
# rustup has now been installed in gstreamer/amd64/windows:2023-04-03.0-main, just set the right version which will install cargo etc.
RUN rustup override set $env:RUST_VERSION
2022-11-14 13:40:53 +00:00
RUN Invoke-WebRequest -Uri https://github.com/mlocati/gettext-iconv-windows/releases/download/v0.21-v1.16/gettext0.21-iconv1.16-shared-64.exe -OutFile C:\gettext0.21.exe
RUN C:\gettext0.21.exe /SILENT