1
0
Fork 0
hscloud/app/radio/Dockerfile

11 lines
209 B
Docker
Raw Normal View History

2019-06-19 12:31:19 +00:00
FROM alpine:3.9
RUN set -e -x ;\
apk add --no-cache icecast
USER icecast
2019-06-19 12:55:11 +00:00
COPY standby.ogg /usr/share/icecast/web/standby.ogg
2019-06-19 12:31:19 +00:00
ENTRYPOINT ["/usr/bin/icecast", "-c", "/usr/share/icecast/icecast.xml"]