From 0ac7ae252d65c822a32bdd916875e3ce9f335ec6 Mon Sep 17 00:00:00 2001 From: Adam French Date: Mon, 24 Nov 2025 13:12:20 +0000 Subject: [PATCH] fix entrypoint in dockerfile --- icecast/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icecast/Dockerfile b/icecast/Dockerfile index 6d7fa82..b4465fb 100644 --- a/icecast/Dockerfile +++ b/icecast/Dockerfile @@ -4,4 +4,4 @@ FROM pltnk/icecast2 COPY icecast.xml.template /etc/icecast2/icecast.xml.template COPY entrypoint.sh /entrypoint.sh -ENTRYPOINT [ "entrypoint.sh" ] +ENTRYPOINT [ "/entrypoint.sh" ]