From cd26b08db8b1ae323ffa6c71a9ac46117d40fd53 Mon Sep 17 00:00:00 2001 From: Roy Olav Purser Date: Tue, 9 Mar 2021 18:37:41 +0100 Subject: [PATCH] fix dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fd8cd5e..9c6d59d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,6 @@ RUN ["apk", "add", "--no-cache", "icecast"] COPY ["icecast.xml", "/app/icecast.xml"] FROM scratch -COPY --from/base / / +COPY --from=base / / USER 1443:1443 ENTRYPOINT ["/usr/bin/icecast", "-c", "/app/icecast.xml"]