working radio

This commit is contained in:
2021-03-09 18:32:52 +01:00
commit 8a27f7fd22
3 changed files with 254 additions and 0 deletions

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM alpine:edge as base
RUN ["apk", "add", "--no-cache", "icecast"]
COPY ["icecast.xml", "/app/icecast.xml"]
FROM scratch
COPY --from/base / /
USER 1443:1443
ENTRYPOINT ["/usr/bin/icecast", "-c", "/app/icecast.xml"]