blob: be256b66819e4076f9a3293db11ccc1f75348bf1 [file] [log] [blame]
Sergiusz Bazanski610bec42019-06-19 14:31:19 +02001FROM alpine:3.9
2
3RUN set -e -x ;\
4 apk add --no-cache icecast
5
6USER icecast
7
8ENTRYPOINT ["/usr/bin/icecast", "-c", "/usr/share/icecast/icecast.xml"]