icecast-relay/Dockerfile

9 lines
218 B
Docker
Raw Permalink Normal View History

2021-03-09 17:32:52 +00:00
FROM alpine:edge as base
RUN ["apk", "add", "--no-cache", "icecast"]
COPY ["icecast.xml", "/app/icecast.xml"]
FROM scratch
2021-03-09 17:37:41 +00:00
COPY --from=base / /
2021-03-09 17:32:52 +00:00
USER 1443:1443
ENTRYPOINT ["/usr/bin/icecast", "-c", "/app/icecast.xml"]