fix deps, remove old docker files
This commit is contained in:
parent
14a566db1f
commit
139868de6d
@ -1,43 +0,0 @@
|
|||||||
FROM almalinux:9 AS base
|
|
||||||
|
|
||||||
ENV container docker
|
|
||||||
RUN dnf -y install libgomp && \
|
|
||||||
dnf 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
|
|
||||||
|
|
||||||
ARG FFPLAYOUT_VERSION=0.18.1
|
|
||||||
COPY README.md *.rpm /tmp/
|
|
||||||
|
|
||||||
RUN dnf update -y && \
|
|
||||||
dnf install -y epel-release && \
|
|
||||||
dnf install -y 'dnf-command(config-manager)' && \
|
|
||||||
dnf config-manager --set-enabled crb && \
|
|
||||||
dnf install -y --nogpgcheck https://mirrors.rpmfusion.org/free/el/rpmfusion-free-release-$(rpm -E %rhel).noarch.rpm && \
|
|
||||||
dnf install -y --nogpgcheck https://mirrors.rpmfusion.org/nonfree/el/rpmfusion-nonfree-release-$(rpm -E %rhel).noarch.rpm && \
|
|
||||||
dnf install -y ffmpeg ffmpeg-devel wget dejavu-sans-fonts sudo && \
|
|
||||||
dnf clean all
|
|
||||||
|
|
||||||
RUN [[ -f /tmp/ffplayout-${FFPLAYOUT_VERSION}-1.x86_64.rpm ]] || wget -q "https://github.com/ffplayout/ffplayout/releases/download/v${FFPLAYOUT_VERSION}/ffplayout-${FFPLAYOUT_VERSION}-1.x86_64.rpm" -P /tmp/ && \
|
|
||||||
dnf install -y /tmp/ffplayout-${FFPLAYOUT_VERSION}-1.x86_64.rpm && \
|
|
||||||
rm /tmp/ffplayout-${FFPLAYOUT_VERSION}-1.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"]
|
|
@ -1,8 +1,8 @@
|
|||||||
FROM centos:7 AS base
|
FROM almalinux:9 AS base
|
||||||
|
|
||||||
ENV container docker
|
ENV container docker
|
||||||
RUN yum -y install libgomp && \
|
RUN dnf -y install libgomp && \
|
||||||
yum clean all
|
dnf clean all;
|
||||||
|
|
||||||
RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == \
|
RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == \
|
||||||
systemd-tmpfiles-setup.service ] || rm -f $i; done); \
|
systemd-tmpfiles-setup.service ] || rm -f $i; done); \
|
||||||
@ -14,247 +14,27 @@ RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == \
|
|||||||
rm -f /lib/systemd/system/basic.target.wants/*; \
|
rm -f /lib/systemd/system/basic.target.wants/*; \
|
||||||
rm -f /lib/systemd/system/anaconda.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
|
FROM base
|
||||||
|
|
||||||
ARG FFPLAYOUT_VERSION=0.18.1
|
ARG FFPLAYOUT_VERSION=0.18.1
|
||||||
|
COPY README.md *.rpm /tmp/
|
||||||
|
|
||||||
ENV LD_LIBRARY_PATH=/usr/local/lib64:/usr/local/lib
|
RUN dnf update -y && \
|
||||||
|
dnf install -y epel-release && \
|
||||||
|
dnf install -y 'dnf-command(config-manager)' && \
|
||||||
|
dnf config-manager --set-enabled crb && \
|
||||||
|
dnf install -y --nogpgcheck https://mirrors.rpmfusion.org/free/el/rpmfusion-free-release-$(rpm -E %rhel).noarch.rpm && \
|
||||||
|
dnf install -y --nogpgcheck https://mirrors.rpmfusion.org/nonfree/el/rpmfusion-nonfree-release-$(rpm -E %rhel).noarch.rpm && \
|
||||||
|
dnf install -y ffmpeg ffmpeg-devel wget dejavu-sans-fonts sudo && \
|
||||||
|
dnf clean all
|
||||||
|
|
||||||
COPY --from=build /usr/local/ /usr/local/
|
RUN [[ -f /tmp/ffplayout-${FFPLAYOUT_VERSION}-1.x86_64.rpm ]] || wget -q "https://github.com/ffplayout/ffplayout/releases/download/v${FFPLAYOUT_VERSION}/ffplayout-${FFPLAYOUT_VERSION}-1.x86_64.rpm" -P /tmp/ && \
|
||||||
|
dnf install -y /tmp/ffplayout-${FFPLAYOUT_VERSION}-1.x86_64.rpm && \
|
||||||
ADD ./overide.conf /etc/systemd/system/ffplayout.service.d/overide.conf
|
rm /tmp/ffplayout-${FFPLAYOUT_VERSION}-1.x86_64.rpm && \
|
||||||
ADD ./overide.conf /etc/systemd/system/ffpapi.service.d/overide.conf
|
mkdir -p /home/ffpu && chown -R ffpu: /home/ffpu && \
|
||||||
|
systemctl enable ffplayout && \
|
||||||
RUN \
|
systemctl enable ffpapi && \
|
||||||
yum update -y \
|
ffpapi -u admin -p admin -m contact@example.com
|
||||||
&& yum install -y wget dejavu-sans-fonts sudo \
|
|
||||||
&& wget -q -O /tmp/ffplayout-${FFPLAYOUT_VERSION}-1.x86_64.rpm "https://github.com/ffplayout/ffplayout/releases/download/v${FFPLAYOUT_VERSION}/ffplayout-${FFPLAYOUT_VERSION}-1.x86_64.rpm" \
|
|
||||||
&& yum install -y /tmp/ffplayout-${FFPLAYOUT_VERSION}-1.x86_64.rpm \
|
|
||||||
&& yum clean all \
|
|
||||||
&& rm /tmp/ffplayout-${FFPLAYOUT_VERSION}-1.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
|
EXPOSE 8787
|
||||||
|
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
FROM centos:7 AS base
|
FROM almalinux:9 AS base
|
||||||
|
|
||||||
ENV container docker
|
ENV container docker
|
||||||
RUN yum -y install libgomp && \
|
|
||||||
yum clean all;
|
|
||||||
|
|
||||||
RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == \
|
RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == \
|
||||||
systemd-tmpfiles-setup.service ] || rm -f $i; done); \
|
systemd-tmpfiles-setup.service ] || rm -f $i; done); \
|
||||||
@ -18,418 +16,119 @@ FROM base AS build
|
|||||||
|
|
||||||
WORKDIR /tmp/workdir
|
WORKDIR /tmp/workdir
|
||||||
|
|
||||||
ENV FFMPEG_VERSION=5.1.2 \
|
ENV SRC=/usr/local \
|
||||||
AOM_VERSION=v1.0.0 \
|
BUILD=/tmp/build
|
||||||
FDKAAC_VERSION=0.1.5 \
|
|
||||||
FONTCONFIG_VERSION=2.12.4 \
|
|
||||||
FREETYPE_VERSION=2.10.4 \
|
|
||||||
FRIBIDI_VERSION=0.19.7 \
|
|
||||||
KVAZAAR_VERSION=2.0.0 \
|
|
||||||
LAME_VERSION=3.100 \
|
|
||||||
LIBASS_VERSION=0.13.7 \
|
|
||||||
LIBPTHREAD_STUBS_VERSION=0.4 \
|
|
||||||
OGG_VERSION=1.3.2 \
|
|
||||||
OPUS_VERSION=1.2 \
|
|
||||||
OPENJPEG_VERSION=2.1.2 \
|
|
||||||
VORBIS_VERSION=1.3.5 \
|
|
||||||
VPX_VERSION=1.8.0 \
|
|
||||||
WEBP_VERSION=1.0.2 \
|
|
||||||
X264_VERSION=20170226-2245-stable \
|
|
||||||
X265_VERSION=3.4 \
|
|
||||||
LIBZMQ_VERSION=4.3.2 \
|
|
||||||
LIBSRT_VERSION=1.4.1 \
|
|
||||||
LIBPNG_VERSION=1.6.9 \
|
|
||||||
SRC=/usr/local
|
|
||||||
|
|
||||||
ARG FREETYPE_SHA256SUM="5eab795ebb23ac77001cfb68b7d4d50b5d6c7469247b0b01b2c953269f658dac freetype-2.10.4.tar.gz"
|
|
||||||
ARG FRIBIDI_SHA256SUM="3fc96fa9473bd31dcb5500bdf1aa78b337ba13eb8c301e7c28923fea982453a8 0.19.7.tar.gz"
|
|
||||||
ARG LIBASS_SHA256SUM="8fadf294bf701300d4605e6f1d92929304187fca4b8d8a47889315526adbafd7 0.13.7.tar.gz"
|
|
||||||
ARG OGG_SHA256SUM="e19ee34711d7af328cb26287f4137e70630e7261b17cbe3cd41011d73a654692 libogg-1.3.2.tar.gz"
|
|
||||||
ARG OPUS_SHA256SUM="77db45a87b51578fbc49555ef1b10926179861d854eb2613207dc79d9ec0a9a9 opus-1.2.tar.gz"
|
|
||||||
ARG VORBIS_SHA256SUM="6efbcecdd3e5dfbf090341b485da9d176eb250d893e3eb378c428a2db38301ce libvorbis-1.3.5.tar.gz"
|
|
||||||
ARG LIBZMQ_SHA256SUM="02ecc88466ae38cf2c8d79f09cfd2675ba299a439680b64ade733e26a349edeb v4.3.2.tar.gz"
|
|
||||||
|
|
||||||
ARG LD_LIBRARY_PATH=/opt/ffmpeg/lib
|
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:/lib64/pkgconfig"
|
||||||
ARG PKG_CONFIG_PATH="/opt/ffmpeg/share/pkgconfig:/opt/ffmpeg/lib/pkgconfig:/opt/ffmpeg/lib64/pkgconfig"
|
ARG LOCALDESTDIR=/opt/ffmpeg
|
||||||
ARG PREFIX=/opt/ffmpeg
|
|
||||||
ARG LD_LIBRARY_PATH="/opt/ffmpeg/lib:/opt/ffmpeg/lib64"
|
ARG LD_LIBRARY_PATH="/opt/ffmpeg/lib:/opt/ffmpeg/lib64"
|
||||||
|
|
||||||
RUN buildDeps="autoconf \
|
RUN \
|
||||||
automake \
|
buildDeps="bzip2 gperf which libticonv autoconf automake cmake diffutils file gcc \
|
||||||
bzip2 \
|
ninja-build wget nasm gcc-c++ git libtool make perl yasm meson x264-devel zlib-devel \
|
||||||
cmake3 \
|
expat-devel fontconfig-devel libxml2-devel lame-devel libpng-devel numactl-devel \
|
||||||
diffutils \
|
fribidi-devel zeromq-devel freetype-devel opus-devel libass-devel openssl-devel" && \
|
||||||
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 && \
|
echo "${SRC}/lib" > /etc/ld.so.conf.d/libc.conf && \
|
||||||
yum --enablerepo=extras install -y epel-release && \
|
dnf install -y epel-release && \
|
||||||
yum --enablerepo=epel install -y ${buildDeps} && \
|
dnf install -y 'dnf-command(config-manager)' && \
|
||||||
alternatives --install /usr/bin/cmake cmake /usr/bin/cmake3 0 && \
|
dnf config-manager --set-enabled crb && \
|
||||||
# Install the tools required to build nasm 2.14.02 \
|
dnf install -y --nogpgcheck https://mirrors.rpmfusion.org/free/el/rpmfusion-free-release-$(rpm -E %rhel).noarch.rpm && \
|
||||||
nasmDeps="asciidoc \
|
dnf install -y --nogpgcheck https://mirrors.rpmfusion.org/nonfree/el/rpmfusion-nonfree-release-$(rpm -E %rhel).noarch.rpm && \
|
||||||
perl-Font-TTF \
|
dnf install -y ${buildDeps} && \
|
||||||
perl-Sort-Versions \
|
mkdir -p ${BUILD}
|
||||||
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
|
|
||||||
|
|
||||||
## x264 http://www.videolan.org/developers/x264.html
|
|
||||||
RUN \
|
RUN \
|
||||||
DIR=/tmp/x264 && \
|
cd ${BUILD} && \
|
||||||
mkdir -p ${DIR} && \
|
git clone --depth 1 "https://github.com/Haivision/srt.git" && \
|
||||||
cd ${DIR} && \
|
cd srt && \
|
||||||
curl -sL https://download.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-${X264_VERSION}.tar.bz2 | \
|
mkdir build && \
|
||||||
tar -jx --strip-components=1 && \
|
cd build && \
|
||||||
./configure --prefix="${PREFIX}" --enable-shared --enable-pic --disable-cli && \
|
cmake .. -DCMAKE_INSTALL_PREFIX="$LOCALDESTDIR" -DENABLE_SHARED:BOOLEAN=OFF -DUSE_STATIC_LIBSTDCXX:BOOLEAN=ON \
|
||||||
|
-DENABLE_CXX11:BOOLEAN=OFF -DCMAKE_INSTALL_BINDIR="bin" -DCMAKE_INSTALL_LIBDIR="lib" -DCMAKE_INSTALL_INCLUDEDIR="include" && \
|
||||||
make -j $(nproc | awk '{print $1 / 2}') && \
|
make -j $(nproc | awk '{print $1 / 2}') && \
|
||||||
make install && \
|
make install
|
||||||
rm -rf ${DIR}
|
|
||||||
|
|
||||||
### x265 http://x265.org/
|
|
||||||
RUN \
|
RUN \
|
||||||
DIR=/tmp/x265 && \
|
cd ${BUILD} && \
|
||||||
mkdir -p ${DIR} && \
|
git clone --depth 1 "https://code.videolan.org/rist/librist.git" && \
|
||||||
cd ${DIR} && \
|
cd librist && \
|
||||||
curl -sL https://github.com/videolan/x265/archive/refs/tags/${X265_VERSION}.tar.gz | \
|
mkdir build && \
|
||||||
tar -zx && \
|
cd build && \
|
||||||
cd x265-${X265_VERSION}/build/linux && \
|
meson setup --default-library=static --prefix "$LOCALDESTDIR" --libdir="$LOCALDESTDIR/lib" .. && \
|
||||||
sed -i "/-DEXTRA_LIB/ s/$/ -DCMAKE_INSTALL_PREFIX=\${PREFIX}/" multilib.sh && \
|
ninja && \
|
||||||
sed -i "/^cmake/ s/$/ -DENABLE_CLI=OFF/" multilib.sh && \
|
ninja install
|
||||||
./multilib.sh && \
|
|
||||||
make -C 8bit install && \
|
|
||||||
rm -rf ${DIR}
|
|
||||||
|
|
||||||
### libogg https://www.xiph.org/ogg/
|
|
||||||
RUN \
|
RUN \
|
||||||
DIR=/tmp/ogg && \
|
cd ${BUILD} && \
|
||||||
mkdir -p ${DIR} && \
|
git clone --depth 1 "https://github.com/mstorsjo/fdk-aac" && \
|
||||||
cd ${DIR} && \
|
cd fdk-aac && \
|
||||||
curl -sLO http://downloads.xiph.org/releases/ogg/libogg-${OGG_VERSION}.tar.gz && \
|
|
||||||
echo ${OGG_SHA256SUM} | sha256sum --check && \
|
|
||||||
tar -zx --strip-components=1 -f libogg-${OGG_VERSION}.tar.gz && \
|
|
||||||
./configure --prefix="${PREFIX}" --enable-shared && \
|
|
||||||
make -j $(nproc | awk '{print $1 / 2}') && \
|
|
||||||
make install && \
|
|
||||||
rm -rf ${DIR}
|
|
||||||
|
|
||||||
### libopus https://www.opus-codec.org/
|
|
||||||
RUN \
|
|
||||||
DIR=/tmp/opus && \
|
|
||||||
mkdir -p ${DIR} && \
|
|
||||||
cd ${DIR} && \
|
|
||||||
curl -sLO https://archive.mozilla.org/pub/opus/opus-${OPUS_VERSION}.tar.gz && \
|
|
||||||
echo ${OPUS_SHA256SUM} | sha256sum --check && \
|
|
||||||
tar -zx --strip-components=1 -f opus-${OPUS_VERSION}.tar.gz && \
|
|
||||||
autoreconf -fiv && \
|
|
||||||
./configure --prefix="${PREFIX}" --enable-shared && \
|
|
||||||
make -j $(nproc | awk '{print $1 / 2}') && \
|
|
||||||
make install && \
|
|
||||||
rm -rf ${DIR}
|
|
||||||
|
|
||||||
### libvorbis https://xiph.org/vorbis/
|
|
||||||
RUN \
|
|
||||||
DIR=/tmp/vorbis && \
|
|
||||||
mkdir -p ${DIR} && \
|
|
||||||
cd ${DIR} && \
|
|
||||||
curl -sLO http://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VERSION}.tar.gz && \
|
|
||||||
echo ${VORBIS_SHA256SUM} | sha256sum --check && \
|
|
||||||
tar -zx --strip-components=1 -f libvorbis-${VORBIS_VERSION}.tar.gz && \
|
|
||||||
./configure --prefix="${PREFIX}" --with-ogg="${PREFIX}" --enable-shared && \
|
|
||||||
make -j $(nproc | awk '{print $1 / 2}') && \
|
|
||||||
make install && \
|
|
||||||
rm -rf ${DIR}
|
|
||||||
|
|
||||||
### libvpx https://www.webmproject.org/code/
|
|
||||||
RUN \
|
|
||||||
DIR=/tmp/vpx && \
|
|
||||||
mkdir -p ${DIR} && \
|
|
||||||
cd ${DIR} && \
|
|
||||||
curl -sL https://codeload.github.com/webmproject/libvpx/tar.gz/v${VPX_VERSION} | \
|
|
||||||
tar -zx --strip-components=1 && \
|
|
||||||
./configure --prefix="${PREFIX}" --enable-vp8 --enable-vp9 --enable-vp9-highbitdepth --enable-pic --enable-shared \
|
|
||||||
--disable-debug --disable-examples --disable-docs --disable-install-bins && \
|
|
||||||
make -j $(nproc | awk '{print $1 / 2}') && \
|
|
||||||
make install && \
|
|
||||||
rm -rf ${DIR}
|
|
||||||
|
|
||||||
### libwebp https://developers.google.com/speed/webp/
|
|
||||||
RUN \
|
|
||||||
DIR=/tmp/vebp && \
|
|
||||||
mkdir -p ${DIR} && \
|
|
||||||
cd ${DIR} && \
|
|
||||||
curl -sL https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-${WEBP_VERSION}.tar.gz | \
|
|
||||||
tar -zx --strip-components=1 && \
|
|
||||||
./configure --prefix="${PREFIX}" --enable-shared && \
|
|
||||||
make -j $(nproc | awk '{print $1 / 2}') && \
|
|
||||||
make install && \
|
|
||||||
rm -rf ${DIR}
|
|
||||||
|
|
||||||
### libmp3lame http://lame.sourceforge.net/
|
|
||||||
RUN \
|
|
||||||
DIR=/tmp/lame && \
|
|
||||||
mkdir -p ${DIR} && \
|
|
||||||
cd ${DIR} && \
|
|
||||||
curl -sL https://sourceforge.net/projects/lame/files/lame/${LAME_VERSION}/lame-${LAME_VERSION}.tar.gz/download | \
|
|
||||||
tar -zx --strip-components=1 && \
|
|
||||||
./configure --prefix="${PREFIX}" --bindir="${PREFIX}/bin" --enable-shared --enable-nasm --disable-frontend && \
|
|
||||||
make -j $(nproc | awk '{print $1 / 2}') && \
|
|
||||||
make install && \
|
|
||||||
rm -rf ${DIR}
|
|
||||||
|
|
||||||
### fdk-aac https://github.com/mstorsjo/fdk-aac
|
|
||||||
RUN \
|
|
||||||
DIR=/tmp/fdk-aac && \
|
|
||||||
mkdir -p ${DIR} && \
|
|
||||||
cd ${DIR} && \
|
|
||||||
curl -sL https://github.com/mstorsjo/fdk-aac/archive/v${FDKAAC_VERSION}.tar.gz | \
|
|
||||||
tar -zx --strip-components=1 && \
|
|
||||||
autoreconf -fiv && \
|
|
||||||
./configure --prefix="${PREFIX}" --enable-shared --datadir="${DIR}" && \
|
|
||||||
make -j $(nproc | awk '{print $1 / 2}') && \
|
|
||||||
make install && \
|
|
||||||
rm -rf ${DIR}
|
|
||||||
|
|
||||||
## openjpeg https://github.com/uclouvain/openjpeg
|
|
||||||
RUN \
|
|
||||||
DIR=/tmp/openjpeg && \
|
|
||||||
mkdir -p ${DIR} && \
|
|
||||||
cd ${DIR} && \
|
|
||||||
curl -sL https://github.com/uclouvain/openjpeg/archive/v${OPENJPEG_VERSION}.tar.gz | \
|
|
||||||
tar -zx --strip-components=1 && \
|
|
||||||
cmake -DBUILD_THIRDPARTY:BOOL=ON -DCMAKE_INSTALL_PREFIX="${PREFIX}" . && \
|
|
||||||
make -j $(nproc | awk '{print $1 / 2}') && \
|
|
||||||
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}
|
|
||||||
|
|
||||||
## 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}
|
|
||||||
|
|
||||||
## 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 && \
|
./autogen.sh && \
|
||||||
./configure --prefix="${PREFIX}" --disable-static --enable-shared && \
|
./configure --prefix="$LOCALDESTDIR" --enable-shared=no && \
|
||||||
make -j $(nproc | awk '{print $1 / 2}') && \
|
make -j $(nproc | awk '{print $1 / 2}') && \
|
||||||
make install && \
|
make install
|
||||||
rm -rf ${DIR}
|
|
||||||
|
|
||||||
## kvazaar https://github.com/ultravideo/kvazaar
|
|
||||||
RUN \
|
RUN \
|
||||||
DIR=/tmp/kvazaar && \
|
cd ${BUILD} && \
|
||||||
mkdir -p ${DIR} && \
|
git clone --depth 1 "https://gitlab.com/AOMediaCodec/SVT-AV1.git" && \
|
||||||
cd ${DIR} && \
|
cd SVT-AV1/Build && \
|
||||||
curl -sLO https://github.com/ultravideo/kvazaar/archive/v${KVAZAAR_VERSION}.tar.gz && \
|
rm -rf * && \
|
||||||
tar -zx --strip-components=1 -f v${KVAZAAR_VERSION}.tar.gz && \
|
cmake .. -G"Unix Makefiles" -DCMAKE_INSTALL_PREFIX="$LOCALDESTDIR" -DCMAKE_BUILD_TYPE=Release \
|
||||||
./autogen.sh && \
|
-DBUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_BINDIR="bin" -DCMAKE_INSTALL_LIBDIR="lib" -DCMAKE_INSTALL_INCLUDEDIR="include" && \
|
||||||
./configure --prefix="${PREFIX}" --disable-static --enable-shared && \
|
|
||||||
make -j $(nproc | awk '{print $1 / 2}') && \
|
make -j $(nproc | awk '{print $1 / 2}') && \
|
||||||
make install && \
|
make install
|
||||||
rm -rf ${DIR}
|
|
||||||
|
|
||||||
RUN \
|
RUN \
|
||||||
DIR=/tmp/aom && \
|
cd ${BUILD} && \
|
||||||
git clone --branch ${AOM_VERSION} --depth 1 https://aomedia.googlesource.com/aom ${DIR} && \
|
git clone --depth 1 "https://code.videolan.org/videolan/dav1d.git" && \
|
||||||
cd ${DIR} && \
|
cd dav1d && \
|
||||||
rm -rf CMakeCache.txt CMakeFiles && \
|
mkdir build && \
|
||||||
mkdir -p ./aom_build && \
|
cd build && \
|
||||||
cd ./aom_build && \
|
meson setup -Denable_tools=false -Denable_tests=false --default-library=static .. --prefix "$LOCALDESTDIR" --libdir="$LOCALDESTDIR/lib" && \
|
||||||
cmake -DCMAKE_INSTALL_PREFIX="${PREFIX}" -DBUILD_SHARED_LIBS=1 .. && \
|
ninja && \
|
||||||
make && \
|
ninja install
|
||||||
make install && \
|
|
||||||
rm -rf ${DIR}
|
|
||||||
|
|
||||||
RUN \
|
RUN \
|
||||||
DIR=/tmp/libpthread-stubs && \
|
cd ${BUILD} && \
|
||||||
mkdir -p ${DIR} && \
|
git clone "https://github.com/webmproject/libvpx.git" && \
|
||||||
cd ${DIR} && \
|
cd libvpx && \
|
||||||
curl -sLO https://xcb.freedesktop.org/dist/libpthread-stubs-${LIBPTHREAD_STUBS_VERSION}.tar.gz && \
|
./configure --prefix="$LOCALDESTDIR" --disable-shared --enable-static --disable-unit-tests --disable-docs --enable-postproc --enable-vp9-postproc --enable-runtime-cpu-detect && \
|
||||||
tar -zx --strip-components=1 -f libpthread-stubs-${LIBPTHREAD_STUBS_VERSION}.tar.gz && \
|
make -j $(nproc | awk '{print $1 / 2}') && \
|
||||||
./configure --prefix="${PREFIX}" && \
|
make install
|
||||||
|
|
||||||
|
RUN \
|
||||||
|
cd ${BUILD} && \
|
||||||
|
git clone "https://bitbucket.org/multicoreware/x265_git.git" x265 && \
|
||||||
|
cd x265/build && \
|
||||||
|
rm -rf * && \
|
||||||
|
cmake ../source -DCMAKE_INSTALL_PREFIX="$LOCALDESTDIR" -DENABLE_SHARED:BOOLEAN=OFF -DCMAKE_CXX_FLAGS_RELEASE:STRING="-O3 -DNDEBUG" && \
|
||||||
make -j $(nproc | awk '{print $1 / 2}') && \
|
make -j $(nproc | awk '{print $1 / 2}') && \
|
||||||
make install && \
|
make install
|
||||||
rm -rf ${DIR}
|
|
||||||
|
|
||||||
## libzmq https://github.com/zeromq/libzmq/
|
|
||||||
RUN \
|
RUN \
|
||||||
DIR=/tmp/libzmq && \
|
cd ${BUILD} && \
|
||||||
mkdir -p ${DIR} && \
|
wget "https://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2" && \
|
||||||
cd ${DIR} && \
|
tar xfvj ffmpeg-snapshot.tar.bz2 && \
|
||||||
curl -sLO https://github.com/zeromq/libzmq/archive/v${LIBZMQ_VERSION}.tar.gz && \
|
rm -rf ffmpeg-snapshot.tar.bz2 && \
|
||||||
echo ${LIBZMQ_SHA256SUM} | sha256sum --check && \
|
cd ffmpeg && \
|
||||||
tar -xz --strip-components=1 -f v${LIBZMQ_VERSION}.tar.gz && \
|
./configure --prefix="$LOCALDESTDIR" --enable-pthreads --extra-libs=-lpthread \
|
||||||
./autogen.sh && \
|
--disable-debug --disable-shared --disable-doc --enable-gpl --enable-version3 --pkg-config-flags=--static \
|
||||||
./configure --prefix="${PREFIX}" && \
|
--enable-nonfree --enable-runtime-cpudetect --enable-fontconfig \
|
||||||
|
--enable-openssl --enable-libass --enable-libfdk-aac --enable-libfreetype \
|
||||||
|
--enable-libfribidi --enable-libmp3lame --enable-libopus --enable-libvpx --enable-librist \
|
||||||
|
--enable-libsrt --enable-libx264 --enable-libx265 --enable-libzmq --enable-libsvtav1 --enable-libdav1d && \
|
||||||
make -j $(nproc | awk '{print $1 / 2}') && \
|
make -j $(nproc | awk '{print $1 / 2}') && \
|
||||||
make check && \
|
make install
|
||||||
make install && \
|
|
||||||
rm -rf ${DIR}
|
|
||||||
|
|
||||||
## libsrt https://github.com/Haivision/srt
|
|
||||||
RUN \
|
|
||||||
DIR=/tmp/srt && \
|
|
||||||
mkdir -p ${DIR} && \
|
|
||||||
cd ${DIR} && \
|
|
||||||
curl -sLO https://github.com/Haivision/srt/archive/v${LIBSRT_VERSION}.tar.gz && \
|
|
||||||
tar -xz --strip-components=1 -f v${LIBSRT_VERSION}.tar.gz && \
|
|
||||||
cmake -DCMAKE_INSTALL_PREFIX="${PREFIX}" . && \
|
|
||||||
make -j $(nproc | awk '{print $1 / 2}') && \
|
|
||||||
make install && \
|
|
||||||
rm -rf ${DIR}
|
|
||||||
|
|
||||||
## libpng
|
|
||||||
RUN \
|
|
||||||
DIR=/tmp/png && \
|
|
||||||
mkdir -p ${DIR} && \
|
|
||||||
cd ${DIR} && \
|
|
||||||
git clone https://git.code.sf.net/p/libpng/code ${DIR} -b v${LIBPNG_VERSION} --depth 1 && \
|
|
||||||
./autogen.sh && \
|
|
||||||
./configure --prefix="${PREFIX}" && \
|
|
||||||
make check && \
|
|
||||||
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-libfdk_aac \
|
|
||||||
--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 \
|
RUN \
|
||||||
ldd ${PREFIX}/bin/ffmpeg | grep opt/ffmpeg | cut -d ' ' -f 3 | xargs -i cp {} /usr/local/lib64/ && \
|
cd / && \
|
||||||
for lib in /usr/local/lib64/*.so.*; do ln -s "${lib##*/}" "${lib%%.so.*}".so; done && \
|
cp /opt/ffmpeg/bin/ff* /usr/local/bin/ && \
|
||||||
cp ${PREFIX}/bin/* /usr/local/bin/ && \
|
rm -rf $BUILD $LOCALDESTDIR && \
|
||||||
cp -r ${PREFIX}/share/ffmpeg /usr/local/share/ && \
|
dnf -y remove autoconf automake cmake diffutils file gcc ninja-build nasm gcc-c++ git libtool make perl yasm meson \
|
||||||
LD_LIBRARY_PATH=/usr/local/lib64:/usr/local/lib ffmpeg -buildconf && \
|
x264-devel zlib-devel expat-devel fontconfig-devel libxml2-devel lame-devel libpng-devel numactl-devel \
|
||||||
cp -r ${PREFIX}/include/libav* ${PREFIX}/include/libpostproc ${PREFIX}/include/libsw* /usr/local/include && \
|
fribidi-devel zeromq-devel freetype-devel opus-devel libass-devel openssl-devel && \
|
||||||
mkdir -p /usr/local/lib64/pkgconfig && \
|
dnf autoremove -y && \
|
||||||
for pc in ${PREFIX}/lib/pkgconfig/libav*.pc ${PREFIX}/lib/pkgconfig/libpostproc.pc ${PREFIX}/lib/pkgconfig/libsw*.pc; do \
|
dnf clean all
|
||||||
sed "s:${PREFIX}:/usr/local:g" <"$pc" >/usr/local/lib64/pkgconfig/"${pc##*/}"; \
|
|
||||||
done
|
|
||||||
|
|
||||||
FROM base
|
FROM base
|
||||||
|
|
||||||
@ -443,16 +142,21 @@ ADD ./overide.conf /etc/systemd/system/ffplayout.service.d/overide.conf
|
|||||||
ADD ./overide.conf /etc/systemd/system/ffpapi.service.d/overide.conf
|
ADD ./overide.conf /etc/systemd/system/ffpapi.service.d/overide.conf
|
||||||
|
|
||||||
RUN \
|
RUN \
|
||||||
yum update -y \
|
dnf update -y \
|
||||||
&& yum install -y wget dejavu-sans-fonts sudo \
|
dnf install -y epel-release && \
|
||||||
&& wget -q -O /tmp/ffplayout-${FFPLAYOUT_VERSION}-1.x86_64.rpm "https://github.com/ffplayout/ffplayout/releases/download/v${FFPLAYOUT_VERSION}/ffplayout-${FFPLAYOUT_VERSION}-1.x86_64.rpm" \
|
dnf install -y 'dnf-command(config-manager)' && \
|
||||||
&& yum install -y /tmp/ffplayout-${FFPLAYOUT_VERSION}-1.x86_64.rpm \
|
dnf config-manager --set-enabled crb && \
|
||||||
&& yum clean all \
|
dnf install -y --nogpgcheck https://mirrors.rpmfusion.org/free/el/rpmfusion-free-release-$(rpm -E %rhel).noarch.rpm && \
|
||||||
&& rm /tmp/ffplayout-${FFPLAYOUT_VERSION}-1.x86_64.rpm \
|
dnf install -y --nogpgcheck https://mirrors.rpmfusion.org/nonfree/el/rpmfusion-nonfree-release-$(rpm -E %rhel).noarch.rpm && \
|
||||||
&& mkdir -p /home/ffpu && chown -R ffpu: /home/ffpu \
|
dnf install -y wget dejavu-sans-fonts sudo x264-libs fontconfig lame libpng numactl fribidi zeromq freetype opus libass && \
|
||||||
&& systemctl enable ffplayout \
|
wget -q -O /tmp/ffplayout-${FFPLAYOUT_VERSION}-1.x86_64.rpm "https://github.com/ffplayout/ffplayout/releases/download/v${FFPLAYOUT_VERSION}/ffplayout-${FFPLAYOUT_VERSION}-1.x86_64.rpm" && \
|
||||||
&& systemctl enable ffpapi \
|
dnf install -y /tmp/ffplayout-${FFPLAYOUT_VERSION}-1.x86_64.rpm && \
|
||||||
&& ffpapi -u admin -p admin -m contact@example.com
|
dnf clean all && \
|
||||||
|
rm /tmp/ffplayout-${FFPLAYOUT_VERSION}-1.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
|
EXPOSE 8787
|
||||||
|
|
||||||
|
@ -1,160 +0,0 @@
|
|||||||
FROM almalinux:9 AS base
|
|
||||||
|
|
||||||
ENV container docker
|
|
||||||
|
|
||||||
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 SRC=/usr/local \
|
|
||||||
BUILD=/tmp/build
|
|
||||||
|
|
||||||
ARG LD_LIBRARY_PATH=/opt/ffmpeg/lib
|
|
||||||
ARG PKG_CONFIG_PATH="/opt/ffmpeg/share/pkgconfig:/opt/ffmpeg/lib/pkgconfig:/opt/ffmpeg/lib64/pkgconfig:/lib64/pkgconfig"
|
|
||||||
ARG LOCALDESTDIR=/opt/ffmpeg
|
|
||||||
ARG LD_LIBRARY_PATH="/opt/ffmpeg/lib:/opt/ffmpeg/lib64"
|
|
||||||
|
|
||||||
RUN ffmpegDeps="bzip2 gperf which x264-libs libticonv fontconfig lame libpng numactl fribidi zeromq freetype opus libass" && \
|
|
||||||
buildDeps="autoconf automake cmake diffutils file gcc ninja-build wget nasm gcc-c++ git libtool make perl yasm meson \
|
|
||||||
x264-devel zlib-devel expat-devel fontconfig-devel libxml2-devel lame-devel libpng-devel numactl-devel \
|
|
||||||
fribidi-devel zeromq-devel freetype-devel opus-devel libass-devel openssl-devel" && \
|
|
||||||
echo "${SRC}/lib" > /etc/ld.so.conf.d/libc.conf && \
|
|
||||||
dnf install -y epel-release && \
|
|
||||||
dnf install -y 'dnf-command(config-manager)' && \
|
|
||||||
dnf config-manager --set-enabled crb && \
|
|
||||||
dnf install -y --nogpgcheck https://mirrors.rpmfusion.org/free/el/rpmfusion-free-release-$(rpm -E %rhel).noarch.rpm && \
|
|
||||||
dnf install -y --nogpgcheck https://mirrors.rpmfusion.org/nonfree/el/rpmfusion-nonfree-release-$(rpm -E %rhel).noarch.rpm && \
|
|
||||||
dnf install -y ${ffmpegDeps} && \
|
|
||||||
dnf install -y ${buildDeps} && \
|
|
||||||
mkdir -p ${BUILD}
|
|
||||||
|
|
||||||
RUN \
|
|
||||||
cd ${BUILD} && \
|
|
||||||
git clone --depth 1 "https://github.com/Haivision/srt.git" && \
|
|
||||||
cd srt && \
|
|
||||||
mkdir build && \
|
|
||||||
cd build && \
|
|
||||||
cmake .. -DCMAKE_INSTALL_PREFIX="$LOCALDESTDIR" -DENABLE_SHARED:BOOLEAN=OFF -DUSE_STATIC_LIBSTDCXX:BOOLEAN=ON \
|
|
||||||
-DENABLE_CXX11:BOOLEAN=OFF -DCMAKE_INSTALL_BINDIR="bin" -DCMAKE_INSTALL_LIBDIR="lib" -DCMAKE_INSTALL_INCLUDEDIR="include" && \
|
|
||||||
make -j $(nproc | awk '{print $1 / 2}') && \
|
|
||||||
make install
|
|
||||||
|
|
||||||
RUN \
|
|
||||||
cd ${BUILD} && \
|
|
||||||
git clone --depth 1 "https://code.videolan.org/rist/librist.git" && \
|
|
||||||
cd librist && \
|
|
||||||
mkdir build && \
|
|
||||||
cd build && \
|
|
||||||
meson setup --default-library=static --prefix "$LOCALDESTDIR" --libdir="$LOCALDESTDIR/lib" .. && \
|
|
||||||
ninja && \
|
|
||||||
ninja install
|
|
||||||
|
|
||||||
RUN \
|
|
||||||
cd ${BUILD} && \
|
|
||||||
git clone --depth 1 "https://github.com/mstorsjo/fdk-aac" && \
|
|
||||||
cd fdk-aac && \
|
|
||||||
./autogen.sh && \
|
|
||||||
./configure --prefix="$LOCALDESTDIR" --enable-shared=no && \
|
|
||||||
make -j $(nproc | awk '{print $1 / 2}') && \
|
|
||||||
make install
|
|
||||||
|
|
||||||
RUN \
|
|
||||||
cd ${BUILD} && \
|
|
||||||
git clone --depth 1 "https://gitlab.com/AOMediaCodec/SVT-AV1.git" && \
|
|
||||||
cd SVT-AV1/Build && \
|
|
||||||
rm -rf * && \
|
|
||||||
cmake .. -G"Unix Makefiles" -DCMAKE_INSTALL_PREFIX="$LOCALDESTDIR" -DCMAKE_BUILD_TYPE=Release \
|
|
||||||
-DBUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_BINDIR="bin" -DCMAKE_INSTALL_LIBDIR="lib" -DCMAKE_INSTALL_INCLUDEDIR="include" && \
|
|
||||||
make -j $(nproc | awk '{print $1 / 2}') && \
|
|
||||||
make install
|
|
||||||
|
|
||||||
RUN \
|
|
||||||
cd ${BUILD} && \
|
|
||||||
git clone --depth 1 "https://code.videolan.org/videolan/dav1d.git" && \
|
|
||||||
cd dav1d && \
|
|
||||||
mkdir build && \
|
|
||||||
cd build && \
|
|
||||||
meson setup -Denable_tools=false -Denable_tests=false --default-library=static .. --prefix "$LOCALDESTDIR" --libdir="$LOCALDESTDIR/lib" && \
|
|
||||||
ninja && \
|
|
||||||
ninja install
|
|
||||||
|
|
||||||
RUN \
|
|
||||||
cd ${BUILD} && \
|
|
||||||
git clone "https://github.com/webmproject/libvpx.git" && \
|
|
||||||
cd libvpx && \
|
|
||||||
./configure --prefix="$LOCALDESTDIR" --disable-shared --enable-static --disable-unit-tests --disable-docs --enable-postproc --enable-vp9-postproc --enable-runtime-cpu-detect && \
|
|
||||||
make -j $(nproc | awk '{print $1 / 2}') && \
|
|
||||||
make install
|
|
||||||
|
|
||||||
RUN \
|
|
||||||
cd ${BUILD} && \
|
|
||||||
git clone "https://bitbucket.org/multicoreware/x265_git.git" x265 && \
|
|
||||||
cd x265/build && \
|
|
||||||
rm -rf * && \
|
|
||||||
cmake ../source -DCMAKE_INSTALL_PREFIX="$LOCALDESTDIR" -DENABLE_SHARED:BOOLEAN=OFF -DCMAKE_CXX_FLAGS_RELEASE:STRING="-O3 -DNDEBUG" && \
|
|
||||||
make -j $(nproc | awk '{print $1 / 2}') && \
|
|
||||||
make install
|
|
||||||
|
|
||||||
RUN \
|
|
||||||
cd ${BUILD} && \
|
|
||||||
wget "https://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2" && \
|
|
||||||
tar xfvj ffmpeg-snapshot.tar.bz2 && \
|
|
||||||
rm -rf ffmpeg-snapshot.tar.bz2 && \
|
|
||||||
cd ffmpeg && \
|
|
||||||
./configure --prefix="$LOCALDESTDIR" --enable-pthreads --extra-libs=-lpthread \
|
|
||||||
--disable-debug --disable-shared --disable-doc --enable-gpl --enable-version3 --pkg-config-flags=--static \
|
|
||||||
--enable-nonfree --enable-runtime-cpudetect --enable-fontconfig \
|
|
||||||
--enable-openssl --enable-libass --enable-libfdk-aac --enable-libfreetype \
|
|
||||||
--enable-libfribidi --enable-libmp3lame --enable-libopus --enable-libvpx --enable-librist \
|
|
||||||
--enable-libsrt --enable-libx264 --enable-libx265 --enable-libzmq --enable-libsvtav1 --enable-libdav1d && \
|
|
||||||
make -j $(nproc | awk '{print $1 / 2}') && \
|
|
||||||
make install
|
|
||||||
|
|
||||||
RUN \
|
|
||||||
cd / && \
|
|
||||||
cp /opt/ffmpeg/bin/ff* /usr/local/bin/ && \
|
|
||||||
rm -rf $BUILD $LOCALDESTDIR && \
|
|
||||||
dnf -y remove autoconf automake cmake diffutils file gcc ninja-build nasm gcc-c++ git libtool make perl yasm meson \
|
|
||||||
x264-devel zlib-devel expat-devel fontconfig-devel libxml2-devel lame-devel libpng-devel numactl-devel \
|
|
||||||
fribidi-devel zeromq-devel freetype-devel opus-devel libass-devel openssl-devel && \
|
|
||||||
dnf autoremove -y && \
|
|
||||||
dnf clean all
|
|
||||||
|
|
||||||
FROM base
|
|
||||||
|
|
||||||
ARG FFPLAYOUT_VERSION=0.18.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
|
|
||||||
ADD ./overide.conf /etc/systemd/system/ffpapi.service.d/overide.conf
|
|
||||||
|
|
||||||
RUN \
|
|
||||||
dnf update -y \
|
|
||||||
&& dnf install -y wget dejavu-sans-fonts sudo \
|
|
||||||
&& wget -q -O /tmp/ffplayout-${FFPLAYOUT_VERSION}-1.x86_64.rpm "https://github.com/ffplayout/ffplayout/releases/download/v${FFPLAYOUT_VERSION}/ffplayout-${FFPLAYOUT_VERSION}-1.x86_64.rpm" \
|
|
||||||
&& dnf install -y /tmp/ffplayout-${FFPLAYOUT_VERSION}-1.x86_64.rpm \
|
|
||||||
&& dnf clean all \
|
|
||||||
&& rm /tmp/ffplayout-${FFPLAYOUT_VERSION}-1.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"]
|
|
Loading…
x
Reference in New Issue
Block a user