Add ffmpeg directive to Dockerfile
This commit is contained in:
parent
754e61d15f
commit
c11c1fd69d
|
@ -60,6 +60,12 @@ RUN if [ ${INSTALL_PHPREDIS} = true ]; then \
|
||||||
&& docker-php-ext-enable redis \
|
&& docker-php-ext-enable redis \
|
||||||
;fi
|
;fi
|
||||||
|
|
||||||
|
ARG INSTALL_FFMPEG=false
|
||||||
|
RUN if [ ${INSTALL_FFMPEG} = true ]; then \
|
||||||
|
# Add ffmpeg to horizon
|
||||||
|
apk add ffmpeg \
|
||||||
|
;fi
|
||||||
|
|
||||||
WORKDIR /usr/src
|
WORKDIR /usr/src
|
||||||
RUN if [ ${INSTALL_CASSANDRA} = true ]; then \
|
RUN if [ ${INSTALL_CASSANDRA} = true ]; then \
|
||||||
git clone https://github.com/datastax/php-driver.git \
|
git clone https://github.com/datastax/php-driver.git \
|
||||||
|
|
Loading…
Reference in New Issue