From f6197592bb1f8167976c35b77cc2befdbe936b91 Mon Sep 17 00:00:00 2001 From: Smittix Date: Thu, 29 Jan 2026 22:22:32 +0000 Subject: [PATCH] fix: Resolve dump1090 build failure in Docker Remove -Werror flag and add explicit RTLSDR=yes to prevent build failures on newer GCC versions in Docker builds. Co-Authored-By: Claude Opus 4.5 --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index afdfff0..5447b09 100644 --- a/Dockerfile +++ b/Dockerfile @@ -67,7 +67,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ && cd /tmp \ && git clone --depth 1 https://github.com/flightaware/dump1090.git \ && cd dump1090 \ - && make \ + && sed -i 's/-Werror//g' Makefile \ + && make BLADERF=no RTLSDR=yes \ && cp dump1090 /usr/bin/dump1090-fa \ && ln -s /usr/bin/dump1090-fa /usr/bin/dump1090 \ && rm -rf /tmp/dump1090 \