1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-07 23:51:21 +00:00
dockerfiles/icecast/arm/Dockerfile

18 lines
288 B
Docker
Raw Normal View History

2016-08-17 12:22:38 +00:00
#
# Dockerfile for icecast-arm
#
2021-10-18 04:06:54 +00:00
FROM alpine:3
2016-08-17 12:22:38 +00:00
MAINTAINER EasyPi Software Foundation
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-08-17 12:22:38 +00:00
EXPOSE 8000
2021-10-18 04:06:54 +00:00
CMD ["icecast", "-c", "/etc/icecast/icecast.xml"]