File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,12 +30,14 @@ RUN apt-get update \
3030 ca-certificates \
3131 curl \
3232 xz-utils \
33+ gzip \
3334 && rm -rf /var/lib/apt/lists/* \
3435 && curl -fsSL --retry 3 --retry-delay 5 "https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz" -o /tmp/ffmpeg.tar.xz \
3536 && curl -fsSL "https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz.md5" -o /tmp/ffmpeg.tar.xz.md5 \
3637 && echo "$(awk '{print $1}' /tmp/ffmpeg.tar.xz.md5) /tmp/ffmpeg.tar.xz" | md5sum -c - \
3738 && rm -f /tmp/ffmpeg.tar.xz.md5 \
38- && tar -xJf /tmp/ffmpeg.tar.xz -C /tmp \
39+ && xz -d /tmp/ffmpeg.tar.xz \
40+ && tar -xf /tmp/ffmpeg.tar -C /tmp \
3941 && mkdir -p /usr/local/bin \
4042 && ffmpeg_path=$(find /tmp -name 'ffmpeg' -type f -executable -not -path '*/lib/*' -print -quit) \
4143 && test -n "$ffmpeg_path" && cp "$ffmpeg_path" /usr/local/bin/ffmpeg \
You can’t perform that action at this time.
0 commit comments