Fixing ghostscript env option

This commit is contained in:
Winfried 2017-04-11 16:45:20 +02:00
parent d51cd31ebc
commit ef38dd1532
3 changed files with 3 additions and 3 deletions

View File

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

View File

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

View File

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