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

@ -69,6 +69,12 @@ RUN if [ ${INSTALL_MYSQL_CLIENT} = true ]; then \
apk --update add mysql-client \
;fi
# Install FFMPEG:
ARG INSTALL_FFMPEG=false
RUN if [ ${INSTALL_FFMPEG} = true ]; then \
apk --update add ffmpeg \
;fi
# Install AMQP:
ARG INSTALL_AMQP=false