From eb7b1ddae81f5094adedcf06210683dea1795e1c Mon Sep 17 00:00:00 2001 From: Adam French Date: Mon, 24 Nov 2025 14:35:28 +0000 Subject: [PATCH] reordered Dockerfile for faster compile --- icecast/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/icecast/Dockerfile b/icecast/Dockerfile index 556a976..7fe30a4 100644 --- a/icecast/Dockerfile +++ b/icecast/Dockerfile @@ -2,8 +2,6 @@ FROM debian:latest as builder WORKDIR /app -COPY icecast.xml.template /etc/icecast2/icecast.xml.template -COPY entrypoint.sh /entrypoint.sh RUN apt-get update \ && apt-get install --yes icecast2 gettext @@ -12,4 +10,7 @@ RUN useradd radio RUN chown -R radio:radio /etc/icecast2 /var/log/icecast2 USER radio +COPY icecast.xml.template /etc/icecast2/icecast.xml.template +COPY entrypoint.sh /entrypoint.sh + ENTRYPOINT [ "/entrypoint.sh" ]