build: change ffmpeg static release link to a specific version (5.1.1)

This commit is contained in:
Yassine Doghri 2022-09-14 15:46:25 +00:00
parent 94fae92e9a
commit ddfa2965c3
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
FROM docker.io/alpine:3.13 AS ffmpeg-downloader
RUN apk add --no-cache curl && \
curl https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz -o ffmpeg.tar.xz && \
curl https://johnvansickle.com/ffmpeg/releases/ffmpeg-5.1.1-amd64-static.tar.xz -o ffmpeg.tar.xz && \
mkdir ffmpeg && \
tar -xJf ffmpeg.tar.xz -C ffmpeg --strip-components 1