summaryrefslogtreecommitdiffstats
path: root/Dockerfile-debian.template
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile-debian.template')
-rw-r--r--Dockerfile-debian.template4
1 files changed, 4 insertions, 0 deletions
diff --git a/Dockerfile-debian.template b/Dockerfile-debian.template
index 642c4fdc..9345d2ef 100644
--- a/Dockerfile-debian.template
+++ b/Dockerfile-debian.template
@@ -36,10 +36,13 @@ RUN set -ex; \
libmagickwand-dev \
libzip-dev \
libwebp-dev \
+ libgmp-dev \
; \
\
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
+ if [ ! -e /usr/include/gmp.h ]; then ln -s /usr/include/$debMultiarch/gmp.h /usr/include/gmp.h; fi;\
docker-php-ext-configure gd --with-freetype-dir=/usr --with-png-dir=/usr --with-jpeg-dir=/usr --with-webp-dir=/usr; \
+ docker-php-ext-configure gmp --with-gmp="/usr/include/$debMultiarch"; \
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
docker-php-ext-install -j "$(nproc)" \
exif \
@@ -51,6 +54,7 @@ RUN set -ex; \
pdo_mysql \
pdo_pgsql \
zip \
+ gmp \
; \
\
# pecl will claim success even if one install fails, so we need to perform each install separately