summaryrefslogtreecommitdiffstats
path: root/.examples
diff options
context:
space:
mode:
authorMarcel Klehr <mklehr@gmx.net>2019-09-14 13:11:43 +0200
committerMarcel Klehr <mklehr@gmx.net>2019-10-26 23:41:08 +0200
commit7eb00b62aab4e123eec0b0a2d213396fb87c97c8 (patch)
treeabed1467b0ed539a6d423bac38dba58b4516018d /.examples
parenta3ba284c78e575d21808d63edc229ca5a23a7554 (diff)
Add gmp php extension
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
Diffstat (limited to '.examples')
-rw-r--r--.examples/dockerfiles/full/apache/Dockerfile3
-rw-r--r--.examples/dockerfiles/full/fpm-alpine/Dockerfile2
-rw-r--r--.examples/dockerfiles/full/fpm/Dockerfile3
3 files changed, 0 insertions, 8 deletions
diff --git a/.examples/dockerfiles/full/apache/Dockerfile b/.examples/dockerfiles/full/apache/Dockerfile
index 9e600e76..bd759168 100644
--- a/.examples/dockerfiles/full/apache/Dockerfile
+++ b/.examples/dockerfiles/full/apache/Dockerfile
@@ -20,16 +20,13 @@ RUN set -ex; \
apt-get install -y --no-install-recommends \
libbz2-dev \
libc-client-dev \
- libgmp3-dev \
libkrb5-dev \
libsmbclient-dev \
; \
\
docker-php-ext-configure imap --with-kerberos --with-imap-ssl; \
- ln -s "/usr/include/$(dpkg-architecture --query DEB_BUILD_MULTIARCH)/gmp.h" /usr/include/gmp.h; \
docker-php-ext-install \
bz2 \
- gmp \
imap \
; \
pecl install smbclient; \
diff --git a/.examples/dockerfiles/full/fpm-alpine/Dockerfile b/.examples/dockerfiles/full/fpm-alpine/Dockerfile
index 37029c8e..bbc8b98e 100644
--- a/.examples/dockerfiles/full/fpm-alpine/Dockerfile
+++ b/.examples/dockerfiles/full/fpm-alpine/Dockerfile
@@ -19,13 +19,11 @@ RUN set -ex; \
libressl-dev \
samba-dev \
bzip2-dev \
- gmp-dev \
; \
\
docker-php-ext-configure imap --with-kerberos --with-imap-ssl; \
docker-php-ext-install \
bz2 \
- gmp \
imap \
; \
pecl install smbclient; \
diff --git a/.examples/dockerfiles/full/fpm/Dockerfile b/.examples/dockerfiles/full/fpm/Dockerfile
index 5172e3f2..0fa2ccbf 100644
--- a/.examples/dockerfiles/full/fpm/Dockerfile
+++ b/.examples/dockerfiles/full/fpm/Dockerfile
@@ -20,16 +20,13 @@ RUN set -ex; \
apt-get install -y --no-install-recommends \
libbz2-dev \
libc-client-dev \
- libgmp3-dev \
libkrb5-dev \
libsmbclient-dev \
; \
\
docker-php-ext-configure imap --with-kerberos --with-imap-ssl; \
- ln -s "/usr/include/$(dpkg-architecture --query DEB_BUILD_MULTIARCH)/gmp.h" /usr/include/gmp.h; \
docker-php-ext-install \
bz2 \
- gmp \
imap \
; \
pecl install smbclient; \