From: pejobo Date: Thu, 29 Jan 2026 14:19:21 +0000 (+0100) Subject: add pcre2 package before building, remove unnecessary libva-intel-driver installation X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bdad6de10084e37783c5508ea59ada33c080e746;p=thirdparty%2Ftvheadend.git add pcre2 package before building, remove unnecessary libva-intel-driver installation --- diff --git a/Containerfile.alpine b/Containerfile.alpine index 9a2451692..c051e2b58 100644 --- a/Containerfile.alpine +++ b/Containerfile.alpine @@ -28,6 +28,7 @@ RUN apk add --no-cache \ 'linux-headers' \ 'musl-dev' \ 'openssl-dev>3' \ + 'pcre2' \ 'pngquant' \ 'python3' \ 'uriparser-dev' \ @@ -49,11 +50,6 @@ RUN apk add --no-cache \ --disable-libvpx_static \ --disable-libx264_static \ --disable-libx265_static \ - --disable-libvpx_static \ - --disable-libtheora_static \ - --disable-libvorbis_static \ - --disable-libfdkaac_static \ - --disable-libopus_static \ --enable-bundle \ --enable-dvbcsa \ --enable-hdhomerun_client \ @@ -93,12 +89,6 @@ RUN apk add --no-cache \ 'xmltv' \ 'zlib' \ && \ - [ "$(uname -m)" = 'x86'* ] && apk add --no-cache \ - 'libva-intel-driver' \ - ; \ - [ "$(uname -m)" = 'x86_64' ] && apk add --no-cache \ - 'libva-intel-driver' \ - ; \ addgroup -S 'tvheadend' && \ adduser -D -G 'tvheadend' -h '/var/lib/tvheadend' -s '/bin/nologin' -S 'tvheadend' && \ adduser 'tvheadend' 'audio' && \