I'm looking for a simple way to install ffmpeg in a UBI8 (ubi-minimal) docker image.
I tried running in the dockerfile the following:
RUN microdnf upgrade
RUN microdnf install ffmpeg
And I'm getting:
------
> [7/8] RUN microdnf install ffmpeg:
#11 0.375
#11 0.375 (microdnf:1): librhsm-WARNING **: 07:58:19.229: Found 0 entitlement certificates
#11 0.375
#11 0.375 (microdnf:1): librhsm-WARNING **: 07:58:19.230: Found 0 entitlement certificates
#11 0.519 error: No package matches 'ffmpeg'
------
executor failed running [/bin/sh -c microdnf install ffmpeg]: exit code: 1
How can ffmpeg be easily installed on UBI 8?
Note: I tried referring to numerous references on the web that explain how that may be done, such as this one and this as well, but UBI seems to be working differently.