I'm migrating from defer.run, they were installing custom binaries into the runtime for me, like ffmpeg for example, and I was invoking them via Node, like so:
await runCmd(
`${FFMPEG_PATH} -y -i ${WORKING_DIR}/${masterFileName} -vn -acodec pcm_s16le -ar 44100 -ac 2 ${WORKING_DIR}/${resultingWaveFileName}`
)
how would I do the same using Trigger? do i need to use a Docker image? is that possible? or is there a way to configure the build to pre-install specific binaries?