Merge pull request #784 from winfried-van-loon/645-php-fpm-ghostscript

Fixing ghostscript env option
This commit is contained in:
Mahmoud Zalt 2017-04-11 13:24:29 -04:00 committed by GitHub
commit ddabb4620e
3 changed files with 3 additions and 3 deletions

View File

@ -66,6 +66,7 @@ services:
- INSTALL_MYSQLI=${PHP_FPM_INSTALL_MYSQLI}
- INSTALL_TOKENIZER=${PHP_FPM_INSTALL_TOKENIZER}
- INSTALL_INTL=${PHP_FPM_INSTALL_INTL}
- INSTALL_GHOSTSCRIPT=${PHP_FPM_INSTALL_GHOSTSCRIPT}
dockerfile: "Dockerfile-${PHP_VERSION}"
volumes_from:
- applications

View File

@ -280,7 +280,7 @@ RUN if [ ${INSTALL_INTL} = true ]; then \
# GHOSTSCRIPT:
#####################################
ARG GHOSTSCRIPT=false
ARG INSTALL_GHOSTSCRIPT=false
RUN if [ ${GHOSTSCRIPT} = true ]; then \
# Install the ghostscript extension
# for PDF editing
@ -290,7 +290,6 @@ RUN if [ ${GHOSTSCRIPT} = true ]; then \
ghostscript \
;fi
#
#--------------------------------------------------------------------------
# Final Touch

View File

@ -161,7 +161,7 @@ RUN if [ ${INTL} = true ]; then \
# GHOSTSCRIPT:
#####################################
ARG GHOSTSCRIPT=false
ARG INSTALL_GHOSTSCRIPT=false
RUN if [ ${GHOSTSCRIPT} = true ]; then \
# Install the ghostscript extension
# for PDF editing