2018-08-07 23:27:40 +00:00
|
|
|
FROM fedora:29
|
2017-10-21 10:45:38 +00:00
|
|
|
|
|
|
|
# Add rpmfusion repositories and install all build dependencies of GStreamer
|
|
|
|
# and then remove the gst packages themselves
|
|
|
|
RUN echo "fastestmirror=true" >> /etc/dnf/dnf.conf && \
|
2018-08-07 23:27:40 +00:00
|
|
|
dnf install -y http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-29.noarch.rpm \
|
|
|
|
http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-29.noarch.rpm && \
|
|
|
|
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora-29 && \
|
|
|
|
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora-29 && \
|
2017-10-21 10:45:38 +00:00
|
|
|
dnf upgrade -y && \
|
|
|
|
dnf install -y \
|
|
|
|
dnf-plugins-core \
|
|
|
|
json-glib \
|
|
|
|
libunwind \
|
|
|
|
opencv \
|
|
|
|
openjpeg2 \
|
|
|
|
procps-ng \
|
|
|
|
&& \
|
|
|
|
dnf install -y \
|
|
|
|
gstreamer1 \
|
|
|
|
gstreamer1-plugins-base \
|
|
|
|
gstreamer1-plugins-good \
|
|
|
|
gstreamer1-plugins-good-extras \
|
|
|
|
gstreamer1-plugins-ugly \
|
|
|
|
gstreamer1-plugins-ugly-free \
|
|
|
|
gstreamer1-plugins-bad-nonfree \
|
|
|
|
gstreamer1-plugins-bad-free \
|
|
|
|
gstreamer1-plugins-bad-free-extras \
|
|
|
|
gstreamer1-plugins-bad-freeworld \
|
|
|
|
gstreamer1-libav \
|
|
|
|
gstreamer1-rtsp-server \
|
|
|
|
&& \
|
|
|
|
rpm -e \
|
|
|
|
gstreamer1-plugins-good \
|
|
|
|
gstreamer1-plugins-good-extras \
|
|
|
|
gstreamer1-plugins-ugly \
|
|
|
|
gstreamer1-plugins-ugly-free \
|
|
|
|
gstreamer1-plugins-bad-nonfree \
|
|
|
|
gstreamer1-plugins-bad-free \
|
|
|
|
gstreamer1-plugins-bad-free-extras \
|
|
|
|
gstreamer1-plugins-bad-freeworld \
|
|
|
|
gstreamer1-rtsp-server \
|
|
|
|
gstreamer1-libav \
|
|
|
|
&& \
|
|
|
|
dnf clean all
|