From 1f9e46acc81a5583f8c0ecbbd50c994199adec90 Mon Sep 17 00:00:00 2001 From: Pi-Farm Date: Tue, 17 Mar 2026 19:31:23 +0100 Subject: [PATCH] fix permissions of run-files in s6-overlay --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 676e917..54225f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -100,5 +100,5 @@ RUN echo "**** install apt-utils and locales ****" && \ # add local files COPY root/ / - +RUN find /etc/s6-overlay/s6-rc.d/ -type f \( -name "run" -o -name "up" \) -exec chmod +x {} + ENTRYPOINT ["/init"] \ No newline at end of file diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index ba047cc..bc9dded 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -100,5 +100,5 @@ RUN echo "**** install apt-utils and locales ****" && \ # add local files COPY root/ / - +RUN find /etc/s6-overlay/s6-rc.d/ -type f \( -name "run" -o -name "up" \) -exec chmod +x {} + ENTRYPOINT ["/init"] \ No newline at end of file