From 2e61a55a5258e98f90d3efd644e0795bd23c34ae Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 18 Dec 2025 14:50:20 +0100 Subject: [PATCH] Refactor Dockerfile to simplify permissions setup Removed unnecessary ownership change and adjusted permissions for specific scripts. --- netalertx/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/netalertx/Dockerfile b/netalertx/Dockerfile index f304bd88d..225a4936f 100644 --- a/netalertx/Dockerfile +++ b/netalertx/Dockerfile @@ -31,8 +31,7 @@ ENV READ_WRITE_FOLDERS="$READ_WRITE_FOLDERS $NETALERTX_DATA" # Add rootfs COPY rootfs/ / -RUN chown 102:102 /etc/cont-init.d/* && \ - chmod +x /etc/cont-init.d/* && \ +RUN chmod 755 /etc/cont-init.d/32-ingress.sh /etc/cont-init.d/99-run.sh && \ \ # Install bashio BASHIO_VERSION="0.14.3" && \