mirror of
https://github.com/cupcakearmy/livestream.git
synced 2024-12-21 15:46:33 +00:00
9 lines
155 B
Plaintext
9 lines
155 B
Plaintext
|
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" ]
|