From 52d784b26676d39fdea4da5905beea7fac03dcbc Mon Sep 17 00:00:00 2001 From: aptalca <541623+aptalca@users.noreply.github.com> Date: Fri, 13 Jun 2025 14:31:20 -0400 Subject: [PATCH 1/2] remove unnecessary deps --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 20e9a328..ff2a5e29 100644 --- a/Dockerfile +++ b/Dockerfile @@ -249,7 +249,7 @@ RUN \ curl -s https://raw.githubusercontent.com/thelamer/lang-stash/master/theme.tar.gz \ | tar xzvf - -C /usr/share/themes/Clearlooks/openbox-3/ && \ echo "**** cleanup ****" && \ - apt-get -y remove \ + apt-get purge -y --autoremove \ libjpeg-turbo8-dev \ libx11-dev \ libxext-dev \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 8d442391..7f7beac9 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -246,7 +246,7 @@ RUN \ curl -s https://raw.githubusercontent.com/thelamer/lang-stash/master/theme.tar.gz \ | tar xzvf - -C /usr/share/themes/Clearlooks/openbox-3/ && \ echo "**** cleanup ****" && \ - apt-get -y remove \ + apt-get purge -y --autoremove \ libjpeg-turbo8-dev \ libx11-dev \ libxext-dev \ From 6533f2cb38e6258f11f4bc10c7c8ee610c75295a Mon Sep 17 00:00:00 2001 From: thelamer Date: Mon, 16 Jun 2025 14:44:54 -0400 Subject: [PATCH 2/2] add needed dep with purge --- Dockerfile | 1 + Dockerfile.aarch64 | 1 + 2 files changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index ff2a5e29..8b053a38 100644 --- a/Dockerfile +++ b/Dockerfile @@ -143,6 +143,7 @@ RUN \ pulseaudio \ pulseaudio-utils \ python3 \ + python3-distutils-extra \ python3-gi \ python3-gst-1.0 \ software-properties-common \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 7f7beac9..d1e66223 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -142,6 +142,7 @@ RUN \ pulseaudio \ pulseaudio-utils \ python3 \ + python3-distutils-extra \ python3-gi \ python3-gst-1.0 \ software-properties-common \