1
0
Fork 0
hscloud/app/radio/Dockerfile

11 lines
209 B
Docker

FROM alpine:3.9
RUN set -e -x ;\
apk add --no-cache icecast
USER icecast
COPY standby.ogg /usr/share/icecast/web/standby.ogg
ENTRYPOINT ["/usr/bin/icecast", "-c", "/usr/share/icecast/icecast.xml"]