mirror of
https://github.com/luzifer-docker/rtmp-record.git
synced 2024-11-09 23:20:03 +00:00
Fix: Build tooling has switched to zstandard compression
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
cdd4a9dc86
commit
db128ca358
1 changed files with 3 additions and 3 deletions
|
@ -16,18 +16,18 @@ ENV SKIP_VERIFY=true
|
||||||
RUN set -ex \
|
RUN set -ex \
|
||||||
&& pacman -Syu --noconfirm nginx \
|
&& pacman -Syu --noconfirm nginx \
|
||||||
&& /usr/local/bin/run.sh "https://aur.archlinux.org/nginx-mod-rtmp.git" \
|
&& /usr/local/bin/run.sh "https://aur.archlinux.org/nginx-mod-rtmp.git" \
|
||||||
&& cp git/nginx-mod-rtmp-*.pkg.tar.xz /tmp/nginx-mod-rtmp.pkg.tar.xz
|
&& cp git/nginx-mod-rtmp-*.pkg.tar.zst /tmp/nginx-mod-rtmp.pkg.tar.zst
|
||||||
|
|
||||||
|
|
||||||
FROM luzifer/archlinux:latest
|
FROM luzifer/archlinux:latest
|
||||||
|
|
||||||
COPY --from=aur /tmp/nginx-mod-rtmp.pkg.tar.xz /tmp/
|
COPY --from=aur /tmp/nginx-mod-rtmp.pkg.tar.zst /tmp/
|
||||||
|
|
||||||
RUN set -ex \
|
RUN set -ex \
|
||||||
&& pacman -Syu --noconfirm \
|
&& pacman -Syu --noconfirm \
|
||||||
bash \
|
bash \
|
||||||
nginx \
|
nginx \
|
||||||
&& pacman -U --noconfirm /tmp/nginx-mod-rtmp.pkg.tar.xz
|
&& pacman -U --noconfirm /tmp/nginx-mod-rtmp.pkg.tar.zst
|
||||||
|
|
||||||
COPY --from=fetch /tmp/dumb-init /usr/local/bin/
|
COPY --from=fetch /tmp/dumb-init /usr/local/bin/
|
||||||
COPY docker-entrypoint.sh /usr/local/bin/
|
COPY docker-entrypoint.sh /usr/local/bin/
|
||||||
|
|
Loading…
Reference in a new issue