File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/build/src/extensions/core Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -50,21 +50,21 @@ export function ffmpeg7(): BuildExtension {
50
50
return {
51
51
name : "ffmpeg7" ,
52
52
onBuildComplete ( context ) {
53
- if ( context . target === "dev" ) {
53
+ if ( context . target === "dev" ) {
54
54
return ;
55
55
}
56
56
57
57
context . logger . debug ( "Adding ffmpeg 7" ) ;
58
58
59
59
context . addLayer ( {
60
- id :"ffmpeg7" ,
60
+ id : "ffmpeg7" ,
61
61
image : {
62
62
instructions :[
63
63
"RUN apt-get update && apt-get install -y --no-install-recommends wget xz-utils && apt-get clean && rm -rf /var/lib/apt/lists/*" ,
64
64
"RUN wget https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz -O ffmpeg.tar.xz && tar xvf ffmpeg.tar.xz -C /usr/bin --strip-components=1 --no-anchored 'ffmpeg' 'ffprobe' && rm ffmpeg.tar.xz" ,
65
65
] ,
66
66
} ,
67
- deploy : {
67
+ deploy : {
68
68
env : {
69
69
FFMPEG_PATH : "/usr/bin/ffmpeg" ,
70
70
FFPROBE_PATH : "/usr/bin/ffprobe" ,
You can’t perform that action at this time.
0 commit comments