mirror of
https://github.com/luzifer-docker/rtmp-record.git
synced 2024-11-09 15:19:59 +00:00
39 lines
1 KiB
Docker
39 lines
1 KiB
Docker
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
|
|
|
|
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 \
|
|
bash \
|
|
nginx \
|
|
&& pacman -U --noconfirm /tmp/nginx-mod-rtmp.pkg.tar.zst
|
|
|
|
COPY --from=fetch /tmp/dumb-init /usr/local/bin/
|
|
COPY docker-entrypoint.sh /usr/local/bin/
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
|
|
EXPOSE 80 1935
|
|
VOLUME ["/data"]
|
|
|
|
CMD ["/usr/local/bin/docker-entrypoint.sh"]
|