blob: 93354b6b0ca496b084f64dbfbbc2dce42a02009e [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
Sergiusz Bazanskif9281d82019-06-19 14:55:11 +02008COPY standby.ogg /usr/share/icecast/web/standby.ogg
9
Sergiusz Bazanski610bec42019-06-19 14:31:19 +020010ENTRYPOINT ["/usr/bin/icecast", "-c", "/usr/share/icecast/icecast.xml"]