mirror of
https://github.com/cupcakearmy/livestream.git
synced 2024-12-22 08:06:26 +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" ]
|