

Nice! We have libvpx, lib265, libopencv, lTransform360 installed. Radish:limbix-docker-ffmpeg scott$ docker run limbix-docker-ffmpeg:latest -versionįfmpeg version git-bba9c1c Copyright (c) 2000-2017 the FFmpeg developersīuilt with gcc 6.3.0 (Debian 6.3.0-18) 20170516Ĭonfiguration: -extra-libs=-ldl -enable-gpl -enable-libass -enable-libfdk-aac -enable-libmp3lame -enable-libopus -enable-libtheora -enable-libvorbis -enable-libvpx -enable-libx264 -enable-libx265 -enable-nonfree -enable-libopencv -extra-libs= '-lTransform360 -lstdc++ ' Which when you click the static binaries it redirects you to. I found the links to download ffmpeg from:

The instructions on how to install I found here:Īnd I had to modify them because the link presented in the gist 404’ed. bin/ffmpeg-build & export PATH=$PATH:/workspace/bin Here was my run_command: run_command: cd & mkdir -p bin/ffmpeg-build & pushd bin/ffmpeg-build & wget You can probably do this in a script setup.sh or similar but for simplicties sake I did it with the sample-php app and inline with the command that starts it. Hello! So this might not be the prettiest solution but I managed to do this with a run_command and downloading ffmpeg manually and adding it to the path in line. I realize that I can place a Dockerfile in the github repo itself and still use push to deploy to a branch that way, but if possible I would like to avoid using a custom Dockerfile for this production PHP app and continue with things as I am doing them now with the autodetection on deploy of it being a PHP app from the composer.json file. Is there any means that I could have ffmpeg installed and made available to my production PHP github deployed app? Or is the only way to install ffmpeg via a custom Dockerfile / Container Image deploy process? I am currently running a production PHP app in app platform using github push to deploy without a custom Dockerfile in the repo, and ideally, I would like to continue with this deployment process for the app. I found only one other question on here related to installing ffmpeg on app platform and the answer which seemed to actually satisfy the question said to deploy using a Dockerfile / Container Image for the app and add the installation of ffmpeg using apt as a RUN command in the Dockerfile.
