Installation of ffmpeg (#2118)

* Install ffmpeg in workspace and php-worker.
This commit is contained in:
Tunde Aromire
2019-05-08 16:27:39 +02:00
committed by Shao Yu-Lung (Allen)
parent 0980523049
commit 4417083a80
5 changed files with 27 additions and 0 deletions

View File

@ -643,6 +643,19 @@ RUN if [ ${INSTALL_MYSQL_CLIENT} = true ]; then \
apt-get -y install mysql-client \
;fi
###########################################################################
# FFMPEG:
###########################################################################
USER root
ARG INSTALL_FFMPEG=false
RUN if [ ${INSTALL_FFMPEG} = true ]; then \
apt-get update -yqq && \
apt-get -y install ffmpeg \
;fi
###########################################################################
# Check PHP version:
###########################################################################