From 330ab02b39650cd8583d8713c5b5b048c4ca0de8 Mon Sep 17 00:00:00 2001 From: pi-farm Date: Wed, 18 Mar 2026 02:47:35 +0100 Subject: [PATCH] fix s6-package url and extract --- Dockerfile | 4 ++-- Dockerfile.aarch64 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7207ee3..302bc6b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -76,8 +76,8 @@ RUN echo "**** create user and folders ****" && \ mkdir -p /app /config /defaults /lsiopy # 7. Lokale Skripte kopieren und Ausführungsrechte für S6 reparieren -ADD https://git.pi-farm.de/pi-farm/s6-overlay/archive/stable.tar.gz /tmp -RUN tar -C / -zxpf /tmp/stable.tar.gz && rm -rf /tmp/stable.tar.gz +ADD https://git.pi-farm.de/pi-farm/s6-overlay/archive/new-stable.tar.gz /tmp +RUN tar -C /etc/ -zxpf /tmp/new-stable.tar.gz && rm -rf /tmp/new-stable.tar.gz 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 c95fa8a..1aad891 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -74,8 +74,8 @@ RUN echo "**** create user and folders ****" && \ mkdir -p /app /config /defaults /lsiopy # 7. Lokale Skripte kopieren und Ausführungsrechte für S6 reparieren -ADD https://git.pi-farm.de/pi-farm/s6-overlay/archive/stable.tar.gz /tmp -RUN tar -C / -zxpf /tmp/stable.tar.gz && rm -rf /tmp/stable.tar.gz +ADD https://git.pi-farm.de/pi-farm/s6-overlay/archive/new-stable.tar.gz /tmp +RUN tar -C /etc/ -zxpf /tmp/new-stable.tar.gz && rm -rf /tmp/new-stable.tar.gz 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 -- 2.49.1