mirror of
https://github.com/luzifer-docker/rtmp-record.git
synced 2024-11-09 15:19:59 +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 \
|
||||
&& pacman -Syu --noconfirm nginx \
|
||||
&& /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
|
||||
|
||||
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 \
|
||||
&& pacman -Syu --noconfirm \
|
||||
bash \
|
||||
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 docker-entrypoint.sh /usr/local/bin/
|
||||
|
|
Loading…
Reference in a new issue