From 02929837efc49a5ee4b6e47821d8f5dd0cc05eaa Mon Sep 17 00:00:00 2001 From: wiedehopf Date: Thu, 13 Feb 2025 22:38:42 +0100 Subject: [PATCH] ensure lighttpd can bind to port 80 (#160) needed for podman fixes: https://github.com/sdr-enthusiasts/docker-dump978/issues/159 --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index cd76b28..881df18 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,6 +57,8 @@ RUN set -x && \ ${KEPT_PACKAGES[@]} \ ${TEMP_PACKAGES[@]} \ && \ + # ensure lighttpd can bind to port 80 + setcap 'cap_net_bind_service=+ep' /usr/sbin/lighttpd && \ # grab the bias t scripts curl -o /etc/s6-overlay/scripts/05-rtlsdr-biastee-init https://raw.githubusercontent.com/sdr-enthusiasts/sdre-bias-t-common/main/09-rtlsdr-biastee-init && \ curl -o /etc/s6-overlay/scripts/05-rtlsdr-biastee-down https://raw.githubusercontent.com/sdr-enthusiasts/sdre-bias-t-common/main/09-rtlsdr-biastee-down && \