Closed apatel762 closed 2 years ago
This is so that I can install ffmpeg and ffprobe in the container
ffmpeg
ffprobe
Should be as simple as adding the below snippet in the Containerfile before we install packages:
Containerfile
RUN dnf -y install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-${FEDORA_VERSION}.noarch.rpm \ && dnf -y install https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-${FEDORA_VERSION}.noarch.rpm
was running into issues, but apparently you can share args between build stages (i.e. before and after FROM statements), now it works.
FROM
https://stackoverflow.com/questions/53681522/share-variable-in-multi-stage-dockerfile-arg-before-from-not-substituted
This is so that I can install
ffmpeg
andffprobe
in the containerShould be as simple as adding the below snippet in the
Containerfile
before we install packages: