Merge pull request #805 from bestlong/fixing-php-fpm-ghostscript
Fixing php fpm ghostscript
This commit is contained in:
commit
f3598c3c97
|
@ -202,7 +202,7 @@ RUN if [ ${INSTALL_INTL} = true ]; then \
|
||||||
#####################################
|
#####################################
|
||||||
|
|
||||||
ARG INSTALL_GHOSTSCRIPT=false
|
ARG INSTALL_GHOSTSCRIPT=false
|
||||||
RUN if [ ${GHOSTSCRIPT} = true ]; then \
|
RUN if [ ${INSTALL_GHOSTSCRIPT} = true ]; then \
|
||||||
# Install the ghostscript extension for PDF editing
|
# Install the ghostscript extension for PDF editing
|
||||||
apt-get update && \
|
apt-get update && \
|
||||||
apt-get install -y poppler-utils ghostscript \
|
apt-get install -y poppler-utils ghostscript \
|
||||||
|
|
|
@ -287,7 +287,7 @@ RUN if [ ${INSTALL_INTL} = true ]; then \
|
||||||
#####################################
|
#####################################
|
||||||
|
|
||||||
ARG INSTALL_GHOSTSCRIPT=false
|
ARG INSTALL_GHOSTSCRIPT=false
|
||||||
RUN if [ ${GHOSTSCRIPT} = true ]; then \
|
RUN if [ ${INSTALL_GHOSTSCRIPT} = true ]; then \
|
||||||
# Install the ghostscript extension
|
# Install the ghostscript extension
|
||||||
# for PDF editing
|
# for PDF editing
|
||||||
apt-get -y update \
|
apt-get -y update \
|
||||||
|
|
|
@ -207,7 +207,7 @@ RUN if [ ${INSTALL_INTL} = true ]; then \
|
||||||
#####################################
|
#####################################
|
||||||
|
|
||||||
ARG INSTALL_GHOSTSCRIPT=false
|
ARG INSTALL_GHOSTSCRIPT=false
|
||||||
RUN if [ ${GHOSTSCRIPT} = true ]; then \
|
RUN if [ ${INSTALL_GHOSTSCRIPT} = true ]; then \
|
||||||
# Install the ghostscript extension
|
# Install the ghostscript extension
|
||||||
# for PDF editing
|
# for PDF editing
|
||||||
apt-get -y update \
|
apt-get -y update \
|
||||||
|
|
Loading…
Reference in New Issue