add php exif (#564)

* add php exif

* format
This commit is contained in:
choirudin 2017-01-22 11:20:27 +07:00 committed by Bo-Yi Wu
parent b52dcd4a19
commit a94f08920a
2 changed files with 13 additions and 0 deletions

View File

@ -54,6 +54,7 @@ services:
- INSTALL_BCMATH=false
- INSTALL_MEMCACHED=false
- INSTALL_OPCACHE=false
- INSTALL_EXIF=false
- INSTALL_AEROSPIKE_EXTENSION=false
- CODEIGNITER=false
dockerfile: Dockerfile-70

View File

@ -128,6 +128,18 @@ 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:
#####################################