Installation of ffmpeg (#2078)

* Install ffmpeg in workspace.
* Documented the process for install ffmpeg.
This commit is contained in:
Tunde Aromire
2019-04-09 07:32:40 +01:00
committed by Shao Yu-Lung (Allen)
parent 95965b12e7
commit a03c225e27
4 changed files with 30 additions and 0 deletions

View File

@ -990,6 +990,18 @@ 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 -y install ffmpeg \
;fi
###########################################################################
# Check PHP version:
###########################################################################