Adding exif/redis to php-fpm 56 and 71

This commit is contained in:
Winfried
2017-04-11 20:48:42 +02:00
parent a35287b367
commit 86ebbfbdd3
3 changed files with 36 additions and 1 deletions

View File

@ -107,6 +107,17 @@ RUN if [ ${INSTALL_MEMCACHED} = true ]; then \
docker-php-ext-enable memcached \
;fi
#####################################
# Exif:
#####################################
ARG INSTALL_EXIF=false
RUN if [ ${INSTALL_EXIF} = true ]; then \
# Enable Exif PHP extentions requirements
docker-php-ext-install exif && \
docker-php-ext-enable exif \
;fi
#####################################
# PHP Aerospike:
#####################################