livestream/audio/dockerfile

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" ]