mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-26 05:27:31 +02:00
14 lines
168 B
Docker
14 lines
168 B
Docker
|
#
|
||
|
# Dockerfile for icecast
|
||
|
#
|
||
|
|
||
|
FROM alpine
|
||
|
|
||
|
MAINTAINER kev <noreply@easypi.info>
|
||
|
|
||
|
RUN apk add --no-cache icecast
|
||
|
|
||
|
EXPOSE 8000
|
||
|
|
||
|
CMD ["icecast", "-c", "/etc/icecast.xml"]
|