From 311d268b1027721ba1a52e1ef2e37bf36ce7f161 Mon Sep 17 00:00:00 2001 From: Mitch Ross Date: Mon, 9 Feb 2026 19:09:50 -0500 Subject: [PATCH] Explicitly remove libgtk-3-dev in Dockerfile cleanup step Adds libgtk-3-dev to the apt-get remove list so it doesn't remain in the final image. Runtime GTK libs stay for slowrx. Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index afd8894..7068f91 100644 --- a/Dockerfile +++ b/Dockerfile @@ -199,10 +199,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ && ldconfig \ && rm -rf /tmp/dsd-fme \ # Cleanup build tools to reduce image size - # Note: libgtk-3-dev is removed here but runtime GTK libs (from first stage) - # remain for slowrx. This adds ~10MB to the image but is required for slowrx - # to function. Consider removing slowrx build entirely if moving fully to - # the pure Python SSTV decoder. + # libgtk-3-dev is explicitly removed; runtime GTK libs remain for slowrx && apt-get remove -y \ build-essential \ git \ @@ -210,6 +207,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ cmake \ libncurses-dev \ libsndfile1-dev \ + libgtk-3-dev \ libasound2-dev \ libpng-dev \ libtiff-dev \