FROM centos:7 AS base ENV container docker RUN yum -y install libgomp && \ yum clean all; RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == \ systemd-tmpfiles-setup.service ] || rm -f $i; done); \ rm -f /lib/systemd/system/multi-user.target.wants/*;\ rm -f /etc/systemd/system/*.wants/*;\ rm -f /lib/systemd/system/local-fs.target.wants/*; \ rm -f /lib/systemd/system/sockets.target.wants/*udev*; \ rm -f /lib/systemd/system/sockets.target.wants/*initctl*; \ rm -f /lib/systemd/system/basic.target.wants/*;\ rm -f /lib/systemd/system/anaconda.target.wants/*; FROM base AS build WORKDIR /tmp/workdir ENV FFMPEG_VERSION=5.1.2 \ AOM_VERSION=v1.0.0 \ LIBASS_VERSION=0.13.7 \ FREETYPE_VERSION=2.10.4 \ FRIBIDI_VERSION=0.19.7 \ FONTCONFIG_VERSION=2.12.4 \ SRC=/usr/local ARG LIBASS_SHA256SUM="8fadf294bf701300d4605e6f1d92929304187fca4b8d8a47889315526adbafd7 0.13.7.tar.gz" ARG FREETYPE_SHA256SUM="5eab795ebb23ac77001cfb68b7d4d50b5d6c7469247b0b01b2c953269f658dac freetype-2.10.4.tar.gz" ARG FRIBIDI_SHA256SUM="3fc96fa9473bd31dcb5500bdf1aa78b337ba13eb8c301e7c28923fea982453a8 0.19.7.tar.gz" ARG LD_LIBRARY_PATH=/opt/ffmpeg/lib ARG MAKEFLAGS="-j2" ARG PKG_CONFIG_PATH="/opt/ffmpeg/share/pkgconfig:/opt/ffmpeg/lib/pkgconfig:/opt/ffmpeg/lib64/pkgconfig" ARG PREFIX=/opt/ffmpeg ARG LD_LIBRARY_PATH="/opt/ffmpeg/lib:/opt/ffmpeg/lib64" RUN buildDeps="autoconf \ automake \ bzip2 \ cmake3 \ diffutils \ expat-devel \ file \ gcc \ gcc-c++ \ git \ gperf \ libtool \ make \ perl \ python3 \ openssl-devel \ tar \ yasm \ which \ zlib-devel" && \ echo "${SRC}/lib" > /etc/ld.so.conf.d/libc.conf && \ yum --enablerepo=extras install -y epel-release && \ yum --enablerepo=epel install -y ${buildDeps} && \ alternatives --install /usr/bin/cmake cmake /usr/bin/cmake3 0 && \ # Install the tools required to build nasm 2.14.02 \ nasmDeps="asciidoc \ perl-Font-TTF \ perl-Sort-Versions \ xmlto" && \ yum --enablerepo=epel install -y ${nasmDeps} && \ # Compile and install nasm 2.14.02 \ DIR=/tmp/nasm && \ mkdir -p ${DIR} && \ curl -LSs https://www.nasm.us/pub/nasm/releasebuilds/2.14.02/nasm-2.14.02.tar.gz | \ tar xzC ${DIR} --strip-components=1 && \ pushd ${DIR} && \ ./configure --host=x86_64-redhat-linux-gnu \ --build=x86_64-redhat-linux-gnu \ --prefix=/usr/local \ --exec-prefix=/usr/local \ --bindir=/usr/local/bin \ --sbindir=/usr/local/sbin \ --sysconfdir=/usr/local/etc \ --datadir=/usr/local/share \ --includedir=/usr/local/include \ --libdir=/usr/local/lib \ --libexecdir=/usr/local/libexec \ --enable-sections && \ make all && \ make install && \ make install_rdf && \ popd && rm -rf ${DIR} && \ alternatives --install /usr/bin/nasm nasm /usr/local/bin/nasm 0 && \ # Now that we have a modern nasm build and available, we can undo the last \ # yum transaction as none of those packages are required for the rest of the build \ yum history undo $(yum history info | grep 'Transaction ID' | awk -F: '{print$2}' | tr -d ' ') -y && \ yum autoremove -y RUN yum -y install \ lame-libs \ openjpeg-libs \ opus \ srt-libs \ libvorbis \ libvpx \ libwebp \ libogg \ x264-libs \ x265-libs \ zeromq ## fridibi https://www.fribidi.org/ RUN \ DIR=/tmp/fribidi && \ mkdir -p ${DIR} && \ cd ${DIR} && \ curl -sLO https://github.com/fribidi/fribidi/archive/${FRIBIDI_VERSION}.tar.gz && \ echo ${FRIBIDI_SHA256SUM} | sha256sum --check && \ tar -zx --strip-components=1 -f ${FRIBIDI_VERSION}.tar.gz && \ sed -i 's/^SUBDIRS =.*/SUBDIRS=gen.tab charset lib bin/' Makefile.am && \ ./bootstrap --no-config --auto && \ ./configure --prefix="${PREFIX}" --disable-static --enable-shared && \ make -j1 && \ make install && \ rm -rf ${DIR} ## freetype https://www.freetype.org/ RUN \ DIR=/tmp/freetype && \ mkdir -p ${DIR} && \ cd ${DIR} && \ curl -sLO https://download.savannah.gnu.org/releases/freetype/freetype-${FREETYPE_VERSION}.tar.gz && \ echo ${FREETYPE_SHA256SUM} | sha256sum --check && \ tar -zx --strip-components=1 -f freetype-${FREETYPE_VERSION}.tar.gz && \ ./configure --prefix="${PREFIX}" --disable-static --enable-shared && \ make -j $(nproc | awk '{print $1 / 2}') && \ make install && \ rm -rf ${DIR} ## fontconfig https://www.freedesktop.org/wiki/Software/fontconfig/ RUN \ DIR=/tmp/fontconfig && \ mkdir -p ${DIR} && \ cd ${DIR} && \ curl -sLO https://www.freedesktop.org/software/fontconfig/release/fontconfig-${FONTCONFIG_VERSION}.tar.bz2 && \ tar -jx --strip-components=1 -f fontconfig-${FONTCONFIG_VERSION}.tar.bz2 && \ ./configure --prefix="${PREFIX}" --disable-static --enable-shared && \ make -j $(nproc | awk '{print $1 / 2}') && \ make install && \ rm -rf ${DIR} ## libass https://github.com/libass/libass RUN \ DIR=/tmp/libass && \ mkdir -p ${DIR} && \ cd ${DIR} && \ curl -sLO https://github.com/libass/libass/archive/${LIBASS_VERSION}.tar.gz && \ echo ${LIBASS_SHA256SUM} | sha256sum --check && \ tar -zx --strip-components=1 -f ${LIBASS_VERSION}.tar.gz && \ ./autogen.sh && \ ./configure --prefix="${PREFIX}" --disable-static --enable-shared && \ make -j $(nproc | awk '{print $1 / 2}') && \ make install && \ rm -rf ${DIR} RUN \ DIR=/tmp/aom && \ git clone --branch ${AOM_VERSION} --depth 1 https://aomedia.googlesource.com/aom ${DIR} ; \ cd ${DIR} ; \ rm -rf CMakeCache.txt CMakeFiles ; \ mkdir -p ./aom_build ; \ cd ./aom_build ; \ cmake -DCMAKE_INSTALL_PREFIX="${PREFIX}" -DBUILD_SHARED_LIBS=1 ..; \ make ; \ make install ; \ rm -rf ${DIR} ## Download ffmpeg https://ffmpeg.org/ RUN \ DIR=/tmp/ffmpeg && mkdir -p ${DIR} && cd ${DIR} && \ curl -sLO https://ffmpeg.org/releases/ffmpeg-${FFMPEG_VERSION}.tar.bz2 && \ tar -jx --strip-components=1 -f ffmpeg-${FFMPEG_VERSION}.tar.bz2 && \ ./configure --disable-debug --disable-doc --disable-ffplay --enable-shared --enable-gpl --extra-libs=-ldl && \ make ; make install ## Build ffmpeg https://ffmpeg.org/ RUN \ DIR=/tmp/ffmpeg && cd ${DIR} && \ ./configure \ --disable-debug \ --disable-doc \ --disable-ffplay \ --enable-gpl \ --enable-libaom \ --enable-libass \ --enable-libfreetype \ --enable-libmp3lame \ --enable-libopenjpeg \ --enable-libopus \ --enable-libsrt \ --enable-libvorbis \ --enable-libvpx \ --enable-libwebp \ --enable-libx264 \ --enable-libx265 \ --enable-libzmq \ --enable-nonfree \ --enable-fontconfig \ --enable-postproc \ --enable-shared \ --enable-version3 \ --extra-cflags="-I${PREFIX}/include" \ --extra-ldflags="-L${PREFIX}/lib" \ --extra-libs=-ldl \ --extra-libs=-lpthread \ --prefix="${PREFIX}" && \ make clean && \ make -j $(nproc | awk '{print $1 / 2}') && \ make install && \ make tools/zmqsend && cp tools/zmqsend ${PREFIX}/bin/ && \ make distclean && \ hash -r && \ cd tools && \ make qt-faststart && cp qt-faststart ${PREFIX}/bin/ RUN \ ldd ${PREFIX}/bin/ffmpeg | grep opt/ffmpeg | cut -d ' ' -f 3 | xargs -i cp {} /usr/local/lib64/ && \ for lib in /usr/local/lib64/*.so.*; do ln -s "${lib##*/}" "${lib%%.so.*}".so; done && \ cp ${PREFIX}/bin/* /usr/local/bin/ && \ cp -r ${PREFIX}/share/ffmpeg /usr/local/share/ && \ LD_LIBRARY_PATH=/usr/local/lib64:/usr/local/lib ffmpeg -buildconf && \ cp -r ${PREFIX}/include/libav* ${PREFIX}/include/libpostproc ${PREFIX}/include/libsw* /usr/local/include && \ mkdir -p /usr/local/lib64/pkgconfig && \ for pc in ${PREFIX}/lib/pkgconfig/libav*.pc ${PREFIX}/lib/pkgconfig/libpostproc.pc ${PREFIX}/lib/pkgconfig/libsw*.pc; do \ sed "s:${PREFIX}:/usr/local:g" <"$pc" >/usr/local/lib64/pkgconfig/"${pc##*/}"; \ done FROM base ARG FFPLAYOUT_VERSION=0.17.1 ENV LD_LIBRARY_PATH=/usr/local/lib64:/usr/local/lib COPY --from=build /usr/local/ /usr/local/ ADD ./overide.conf /etc/systemd/system/ffplayout.service.d/overide.conf RUN \ yum update -y \ && yum install -y wget dejavu-sans-fonts sudo \ && wget -q -O /tmp/ffplayout_${FFPLAYOUT_VERSION}.x86_64.rpm "https://github.com/ffplayout/ffplayout/releases/download/v${VERSION}/ffplayout-${FFPLAYOUT_VERSION}-1.x86_64.rpm" \ && yum install -y /tmp/ffplayout_${FFPLAYOUT_VERSION}.x86_64.rpm \ && yum clean all \ && rm /tmp/ffplayout-${FFPLAYOUT_VERSION}.x86_64.rpm \ && mkdir -p /home/ffpu && chown -R ffpu: /home/ffpu \ && systemctl enable ffplayout \ && systemctl enable ffpapi \ && ffpapi -u admin -p admin -m contact@example.com EXPOSE 8787 VOLUME [ "/sys/fs/cgroup" ] CMD ["/usr/sbin/init"]