From: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Date: Mon, 22 Sep 2025 00:17:03 +0000 (+0000) Subject: Fix Docker containers missing bzip2 for backup functionality X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fheads%2Fcopilot%2Ffix-1913;p=thirdparty%2Ftvheadend.git Fix Docker containers missing bzip2 for backup functionality Co-authored-by: Flole998 <9951871+Flole998@users.noreply.github.com> --- diff --git a/Containerfile.alpine b/Containerfile.alpine index a49177edc..4dbae8683 100644 --- a/Containerfile.alpine +++ b/Containerfile.alpine @@ -77,6 +77,7 @@ EXPOSE 9981 \ RUN apk add --no-cache \ 'avahi' \ + 'bzip2' \ 'dbus-libs' \ 'ffmpeg4' \ 'ffmpeg4-libavcodec' \ diff --git a/Containerfile.debian b/Containerfile.debian index 90c204e96..8b226a169 100644 --- a/Containerfile.debian +++ b/Containerfile.debian @@ -80,6 +80,7 @@ EXPOSE 9981 \ 9983 RUN apt-get update --yes && apt-get install --yes \ + 'bzip2' \ 'libavahi-client3' \ 'libavcodec61' \ 'libavdevice61' \