From dda0c2159771cab50879a1c3846c9cf9c66df2f4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 22 Sep 2025 00:17:03 +0000 Subject: [PATCH] Fix Docker containers missing bzip2 for backup functionality Co-authored-by: Flole998 <9951871+Flole998@users.noreply.github.com> --- Containerfile.alpine | 1 + Containerfile.debian | 1 + 2 files changed, 2 insertions(+) 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' \ -- 2.47.3