Skip to content

Commit ba3a039

Browse files
committed
docker: temporarily lock FFmpeg at 7.1
due to `cmfv is not in allowed_extensions` issue
1 parent f46ca8b commit ba3a039

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

Dockerfile

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -168,14 +168,17 @@ EOT
168168
WORKDIR /tmp/ffmpeg_source
169169

170170
RUN <<EOT
171-
FFMPEG_TARBALL="$( \
172-
curl -s -L -k --connect-timeout 5 --retry 3 \
173-
"https://ffmpeg.org/releases/" \
174-
| grep -oE 'ffmpeg-[0-9]+.*.tar.xz' \
175-
| sed 's|\.tar.xz.*||' \
176-
| sort -V \
177-
| tail -n 1 \
178-
).tar.xz"
171+
# Get newest version of FFmpeg.
172+
# FFMPEG_TARBALL="$( \
173+
# curl -s -L -k --connect-timeout 5 --retry 3 \
174+
# "https://ffmpeg.org/releases/" \
175+
# | grep -oE 'ffmpeg-[0-9]+.*.tar.xz' \
176+
# | sed 's|\.tar.xz.*||' \
177+
# | sort -V \
178+
# | tail -n 1 \
179+
# ).tar.xz"
180+
181+
FFMPEG_TARBALL="ffmpeg-7.1.tar.xz"
179182

180183
curl -L -k --connect-timeout 5 --retry 3 \
181184
"https://ffmpeg.org/releases/${FFMPEG_TARBALL}" \

0 commit comments

Comments
 (0)