1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-22 05:09:36 +02:00
dockerfiles/icecast/Dockerfile

18 lines
284 B
Docker
Raw Normal View History

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