dockerfiles/icecast/Dockerfile

18 lines
284 B
Docker
Raw Normal View History

2016-07-09 18:19:09 +00:00
#
# Dockerfile for icecast
#
2021-02-08 09:32:36 +00:00
FROM alpine:3
2016-07-09 18:19:09 +00:00
2021-02-08 09:32:36 +00:00
MAINTAINER EasyPi Software Foundation
2016-07-09 18:19:09 +00:00
2021-10-18 04:06:54 +00:00
RUN set -xe \
&& apk add --no-cache icecast \
&& mkdir -p /etc/icecast \
&& mv /etc/icecast.xml /etc/icecast \
&& icecast --version
2016-07-09 18:19:09 +00:00
EXPOSE 8000
2021-10-18 04:06:54 +00:00
CMD ["icecast", "-c", "/etc/icecast/icecast.xml"]