1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00

update editly

This commit is contained in:
kev 2022-08-04 15:08:35 +08:00
parent 08ea679644
commit a8c08bb14f

@ -5,11 +5,14 @@
FROM node:lts-bullseye FROM node:lts-bullseye
MAINTAINER EasyPi Software Foundation MAINTAINER EasyPi Software Foundation
ARG FFMPEG_VERSION=5.0.1
ARG FFMPEG_URL=https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz
RUN set -xe \ RUN set -xe \
&& apt update \ && apt update \
&& apt install -y curl dumb-init fonts-noto-cjk xvfb xz-utils \ && apt install -y curl dumb-init fonts-noto-cjk xvfb xz-utils \
&& curl -sSL https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz \ && curl -sSL ${FFMPEG_URL} \
| tar xJC /usr/bin/ ffmpeg-4.4.1-amd64-static/ffprobe ffmpeg-4.4.1-amd64-static/ffmpeg --strip 1 \ | tar xJC /usr/bin/ ffmpeg-${FFMPEG_VERSION}-amd64-static/ffprobe ffmpeg-${FFMPEG_VERSION}-amd64-static/ffmpeg --strip 1 \
&& ffmpeg -version \ && ffmpeg -version \
&& ffprobe -version \ && ffprobe -version \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*