1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/icecast/arm/Dockerfile

18 lines
288 B
Docker
Raw Normal View History

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