You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
liquidsoap/Dockerfile

18 lines
421 B

FROM savonet/liquidsoap-alpine:v2.2.2
USER root
RUN apk add tzdata
RUN cp /usr/share/zoneinfo/Europe/Moscow /etc/localtime
RUN echo "Europe/Moscow" > /etc/timezone
RUN mkdir -p /home/stream
RUN mkdir -p /home/stream/music
RUN mkdir -p /home/stream/hls
RUN mkdir -p /home/stream/tmp
RUN chown -R liquidsoap:liquidsoap /home/stream
USER liquidsoap
COPY main.liq /home/stream/script.liq
CMD ["/home/stream/script.liq"]