From bad637591a6bf4cad0ed836fe2910e12569c8c3b Mon Sep 17 00:00:00 2001 From: Smittix Date: Mon, 2 Mar 2026 09:30:09 +0000 Subject: [PATCH] fix: replace duplicate libfftw3-dev with libfftw3-bin for SatDump runtime The FFTW3 dev package was listed twice in the build stage and both copies were removed during cleanup, taking the runtime .so with them. Switching the duplicate to libfftw3-bin ensures libfftw3f.so.3 persists. Fixes #166 Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index be90562..77fc60c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -91,7 +91,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ zlib1g-dev \ libzmq3-dev \ libpulse-dev \ - libfftw3-dev \ + libfftw3-bin \ liblapack-dev \ libglib2.0-dev \ libxml2-dev \