Docker: Add mkvmerge

Signed-off-by: Luigi311 <luigi311.lg@gmail.com>
This commit is contained in:
Luigi311 2021-02-10 11:16:59 -07:00
parent ca329a4934
commit f7e19b2bc9

View file

@ -3,6 +3,13 @@ FROM luigi311/encoders-docker:latest
ENV MPLCONFIGDIR="/home/app_user/" ENV MPLCONFIGDIR="/home/app_user/"
ARG DEBIAN_FRONTEND=noninteractive ARG DEBIAN_FRONTEND=noninteractive
# Install dependencies
RUN apt-get update && \
apt-get install -y --no-install-recommends \
mkvtoolnix && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Install VTM # Install VTM
RUN git clone https://vcgit.hhi.fraunhofer.de/jvet/VVCSoftware_VTM.git /home/app_user/VTM && \ RUN git clone https://vcgit.hhi.fraunhofer.de/jvet/VVCSoftware_VTM.git /home/app_user/VTM && \
mkdir -p /home/app_user/VTM/build mkdir -p /home/app_user/VTM/build