Skip to content

Commit eeb2df4

Browse files
committed
fix v7 install
1 parent 1b29f20 commit eeb2df4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

packages/build/src/extensions/core/ffmpeg.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ export function ffmpeg(options: FfmpegOptions = {}): BuildExtension {
4040
image: {
4141
instructions: [
4242
// Install ffmpeg after checksum validation
43-
"RUN apt-get update && apt-get install -y --no-install-recommends wget xz-utils nscd && apt-get clean && rm -rf /var/lib/apt/lists/* && " +
44-
"wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz.md5 -O ffmpeg.tar.xz.md5 && " +
45-
"wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz -O ffmpeg.tar.xz && " +
46-
"md5sum -c ffmpeg.tar.xz.md5 && " +
47-
"tar xvf ffmpeg.tar.xz -C /usr/bin --strip-components=1 --no-anchored 'ffmpeg' 'ffprobe' && " +
48-
"rm ffmpeg.tar.xz ffmpeg.tar.xz.md5",
43+
"RUN apt-get update && apt-get install -y --no-install-recommends wget xz-utils nscd ca-certificates && apt-get clean && rm -rf /var/lib/apt/lists/* && " +
44+
"wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz.md5 && " +
45+
"wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz && " +
46+
"md5sum -c ffmpeg-git-amd64-static.tar.xz.md5 && " +
47+
"tar xvf ffmpeg-git-amd64-static.tar.xz -C /usr/bin --strip-components=1 --no-anchored 'ffmpeg' 'ffprobe' && " +
48+
"rm ffmpeg-git-amd64-static.tar.xz*",
4949
],
5050
},
5151
deploy: {

0 commit comments

Comments
 (0)