Skip to content

Commit ef38dd1

Browse files
Fixing ghostscript env option
1 parent d51cd31 commit ef38dd1

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ services:
6767
- INSTALL_MYSQL=${PHP_FPM_INSTALL_MYSQL}
6868
- INSTALL_TOKENIZER=${PHP_FPM_INSTALL_TOKENIZER}
6969
- INSTALL_INTL=${PHP_FPM_INSTALL_INTL}
70+
- INSTALL_GHOSTSCRIPT=${PHP_FPM_INSTALL_GHOSTSCRIPT}
7071
dockerfile: "Dockerfile-${PHP_VERSION}"
7172
volumes_from:
7273
- applications

php-fpm/Dockerfile-70

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ RUN if [ ${INSTALL_INTL} = true ]; then \
280280
# GHOSTSCRIPT:
281281
#####################################
282282

283-
ARG GHOSTSCRIPT=false
283+
ARG INSTALL_GHOSTSCRIPT=false
284284
RUN if [ ${GHOSTSCRIPT} = true ]; then \
285285
# Install the ghostscript extension
286286
# for PDF editing
@@ -290,7 +290,6 @@ RUN if [ ${GHOSTSCRIPT} = true ]; then \
290290
ghostscript \
291291
;fi
292292

293-
294293
#
295294
#--------------------------------------------------------------------------
296295
# Final Touch

php-fpm/Dockerfile-71

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ RUN if [ ${INTL} = true ]; then \
161161
# GHOSTSCRIPT:
162162
#####################################
163163

164-
ARG GHOSTSCRIPT=false
164+
ARG INSTALL_GHOSTSCRIPT=false
165165
RUN if [ ${GHOSTSCRIPT} = true ]; then \
166166
# Install the ghostscript extension
167167
# for PDF editing

0 commit comments

Comments
 (0)