mirror of
https://github.com/cupcakearmy/livestream.git
synced 2026-04-30 07:55:24 +00:00
9 lines
155 B
Docker
9 lines
155 B
Docker
FROM alpine:3.7
|
|
|
|
RUN apk add --no-cache icecast
|
|
|
|
WORKDIR /usr/share/icecast
|
|
RUN mkdir ./logs
|
|
RUN chown -R icecast: .
|
|
|
|
CMD [ "icecast", "-c","icecast.xml" ] |