Merge pull request #1121 from freearhey/master

Added support of ImageMagick
This commit is contained in:
Mahmoud Zalt
2017-09-06 14:59:29 +03:00
committed by GitHub
9 changed files with 75 additions and 3 deletions

View File

@ -586,6 +586,15 @@ RUN if [ ${INSTALL_PYTHON} = true ]; then \
&& pip install --upgrade virtualenv \
;fi
#####################################
# ImageMagick:
#####################################
USER root
ARG INSTALL_IMAGEMAGICK=false
ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK}
RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \
apt-get install -y --force-yes imagemagick php-imagick \
;fi
#
#--------------------------------------------------------------------------