From a0aa9877dce4fe486e84aaa38a4fbeb1e93823a7 Mon Sep 17 00:00:00 2001 From: Sol455 Date: Thu, 18 Dec 2025 23:12:16 +0000 Subject: [PATCH] Fix ARM64 build: copy lighttpd config directly to conf-enabled The lighttpd-enable-mod command doesn't exist in the ARM64 base image. Instead of using the helper script, copy the proxy configuration directly to /etc/lighttpd/conf-enabled/90-proxy.conf. --- Dockerfile.tar1090 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile.tar1090 b/Dockerfile.tar1090 index 925069cd..1d121b09 100644 --- a/Dockerfile.tar1090 +++ b/Dockerfile.tar1090 @@ -10,8 +10,7 @@ RUN apt-get update && apt-get install -y \ COPY proxy/server.js /opt/proxy/server.js -COPY docker/lighttpd-proxy.conf /etc/lighttpd/conf-available/90-proxy.conf -RUN lighttpd-enable-mod proxy +COPY docker/lighttpd-proxy.conf /etc/lighttpd/conf-enabled/90-proxy.conf COPY docker/entrypoint.sh /opt/entrypoint.sh RUN chmod +x /opt/entrypoint.sh