rtmp-record/Dockerfile

40 lines
1.0 KiB
Docker
Raw Normal View History

2020-02-03 20:50:04 +00:00
FROM alpine:latest as fetch
RUN set -ex \
&& apk --no-cache add \
ca-certificates \
curl \
&& curl -sSfLo /tmp/dumb-init "https://github.com/Yelp/dumb-init/releases/download/v1.2.2/dumb-init_1.2.2_amd64" \
&& chmod +x \
/tmp/dumb-init
FROM luzifer/arch-repo-builder as aur
ENV SKIP_VERIFY=true
2020-02-03 20:50:04 +00:00
RUN set -ex \
&& pacman -Syu --noconfirm nginx \
&& /usr/local/bin/run.sh "https://aur.archlinux.org/nginx-mod-rtmp.git" \
&& cp git/nginx-mod-rtmp-*.pkg.tar.zst /tmp/nginx-mod-rtmp.pkg.tar.zst
FROM luzifer/archlinux:latest
COPY --from=aur /tmp/nginx-mod-rtmp.pkg.tar.zst /tmp/
RUN set -ex \
&& pacman -Syu --noconfirm \
2020-02-03 20:50:04 +00:00
bash \
nginx \
&& pacman -U --noconfirm /tmp/nginx-mod-rtmp.pkg.tar.zst
2020-02-03 20:50:04 +00:00
COPY --from=fetch /tmp/dumb-init /usr/local/bin/
COPY docker-entrypoint.sh /usr/local/bin/
COPY nginx.conf /etc/nginx/nginx.conf
2020-02-03 20:50:04 +00:00
EXPOSE 80 1935
VOLUME ["/data"]
CMD ["/usr/local/bin/docker-entrypoint.sh"]