We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd0cbff commit 9c14954Copy full SHA for 9c14954
1 file changed
php-fpm/Dockerfile-70
@@ -186,6 +186,20 @@ RUN if [ ${CODEIGNITER} = true ]; then \
186
docker-php-ext-install tokenizer \
187
;fi
188
189
+#####################################
190
+# GHOSTSCRIPT:
191
192
+
193
+ARG GHOSTSCRIPT=false
194
+RUN if [ ${GHOSTSCRIPT} = true ]; then \
195
+ # Install the ghostscript extension
196
+ # for PDF editing
197
+ apt-get -y update \
198
+ && apt-get install -y \
199
+ poppler-utils \
200
+ ghostscript \
201
+;fi
202
203
#
204
#--------------------------------------------------------------------------
205
# Final Touch
0 commit comments