File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ services:
3737 - INSTALL_SYMFONY=${WORKSPACE_INSTALL_SYMFONY}
3838 - INSTALL_PYTHON=${WORKSPACE_INSTALL_PYTHON}
3939 - INSTALL_IMAGE_OPTIMIZERS=${WORKSPACE_INSTALL_IMAGE_OPTIMIZERS}
40+ - INSTALL_IMAGEMAGICK=${WORKSPACE_INSTALL_IMAGEMAGICK}
4041 - PUID=${WORKSPACE_PUID}
4142 - PGID=${WORKSPACE_PGID}
4243 - NODE_VERSION=${WORKSPACE_NODE_VERSION}
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ WORKSPACE_INSTALL_MC=false
5050WORKSPACE_INSTALL_SYMFONY=false
5151WORKSPACE_INSTALL_PYTHON=false
5252WORKSPACE_INSTALL_IMAGE_OPTIMIZERS=false
53+ WORKSPACE_INSTALL_IMAGEMAGICK=false
5354WORKSPACE_PUID=1000
5455WORKSPACE_PGID=1000
5556WORKSPACE_NODE_VERSION=stable
Original file line number Diff line number Diff line change @@ -496,6 +496,16 @@ RUN if [ ${INSTALL_PYTHON} = true ]; then \
496496 && pip install --upgrade virtualenv \
497497;fi
498498
499+ #####################################
500+ # ImageMagick:
501+ #####################################
502+ USER root
503+ ARG INSTALL_IMAGEMAGICK=false
504+ ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK}
505+ RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \
506+ apt-get install -y --force-yes imagemagick php-imagick && \
507+ ;fi
508+
499509#
500510#--------------------------------------------------------------------------
501511# Final Touch
Original file line number Diff line number Diff line change @@ -577,6 +577,16 @@ RUN if [ ${INSTALL_PYTHON} = true ]; then \
577577 && pip install --upgrade virtualenv \
578578;fi
579579
580+ #####################################
581+ # ImageMagick:
582+ #####################################
583+ USER root
584+ ARG INSTALL_IMAGEMAGICK=false
585+ ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK}
586+ RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \
587+ apt-get install -y --force-yes imagemagick php-imagick && \
588+ ;fi
589+
580590#
581591#--------------------------------------------------------------------------
582592# Final Touch
Original file line number Diff line number Diff line change @@ -582,6 +582,15 @@ RUN if [ ${INSTALL_PYTHON} = true ]; then \
582582 && pip install --upgrade virtualenv \
583583;fi
584584
585+ #####################################
586+ # ImageMagick:
587+ #####################################
588+ USER root
589+ ARG INSTALL_IMAGEMAGICK=false
590+ ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK}
591+ RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \
592+ apt-get install -y --force-yes imagemagick php-imagick && \
593+ ;fi
585594
586595#
587596#--------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments