From fa1873a243fbdafaafc242e6f59955abcfdc3a08 Mon Sep 17 00:00:00 2001 From: Adam French Date: Mon, 24 Nov 2025 13:11:05 +0000 Subject: [PATCH] making entrypoint not turn executable in dockerfile --- icecast/Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/icecast/Dockerfile b/icecast/Dockerfile index c7ed981..6d7fa82 100644 --- a/icecast/Dockerfile +++ b/icecast/Dockerfile @@ -4,7 +4,4 @@ FROM pltnk/icecast2 COPY icecast.xml.template /etc/icecast2/icecast.xml.template COPY entrypoint.sh /entrypoint.sh -# Ensure script is executable -RUN chmod +x /entrypoint.sh - ENTRYPOINT [ "entrypoint.sh" ]