From ca0ef7c27060a1c51a972ad9a2605060735791b7 Mon Sep 17 00:00:00 2001 From: xtcnet Date: Sat, 7 Mar 2026 21:35:19 +0700 Subject: [PATCH] Fix: chmod +x install-s6 before execution in Docker build --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index c70e02e..335d3a9 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -32,7 +32,7 @@ RUN echo "fs.file-max = 65535" > /etc/sysctl.conf \ # s6 overlay COPY docker/scripts/install-s6 /tmp/install-s6 -RUN /tmp/install-s6 "${TARGETPLATFORM}" && rm -f /tmp/install-s6 +RUN chmod +x /tmp/install-s6 && /tmp/install-s6 "${TARGETPLATFORM}" && rm -f /tmp/install-s6 EXPOSE 80 81 443 51820/udp