File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
packages/build/src/extensions/core Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff 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 : {
You can’t perform that action at this time.
0 commit comments