We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48de39b commit 03c7611Copy full SHA for 03c7611
1 file changed
php-fpm/Dockerfile-56
@@ -329,6 +329,19 @@ RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \
329
docker-php-ext-enable imagick \
330
;fi
331
332
+#####################################
333
+# IMAP:
334
335
+ARG INSTALL_IMAP=false
336
+ENV INSTALL_IMAP ${INSTALL_IMAP}
337
+RUN if [ ${INSTALL_IMAP} = true ]; then \
338
+ apt-get update && \
339
+ apt-get install -y libc-client-dev libkrb5-dev && \
340
+ rm -r /var/lib/apt/lists/* && \
341
+ docker-php-ext-configure imap --with-kerberos --with-imap-ssl && \
342
+ docker-php-ext-install imap \
343
+;fi
344
+
345
#
346
#--------------------------------------------------------------------------
347
# Final Touch
0 commit comments