0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-03-14 18:35:08 +01:00

Install imap php extension

Signed-off-by: Varac <varac@varac.net>
This commit is contained in:
Varac 2019-02-23 23:08:08 +01:00
parent 001afbefb6
commit 4fc2ac9ed4
No known key found for this signature in database
GPG key ID: 5465E77E7876ED04
3 changed files with 12 additions and 0 deletions

View file

@ -23,11 +23,13 @@ RUN set -ex; \
\
apt-get update; \
apt-get install -y --no-install-recommends \
libc-client-dev \
libcurl4-openssl-dev \
libevent-dev \
libfreetype6-dev \
libicu-dev \
libjpeg-dev \
libkrb5-dev \
libldap2-dev \
libmcrypt-dev \
libmemcached-dev \
@ -40,9 +42,11 @@ RUN set -ex; \
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
docker-php-ext-configure gd --with-freetype-dir=/usr --with-png-dir=/usr --with-jpeg-dir=/usr; \
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
docker-php-ext-configure imap --with-kerberos --with-imap-ssl; \
docker-php-ext-install \
exif \
gd \
imap \
intl \
ldap \
opcache \

View file

@ -23,11 +23,13 @@ RUN set -ex; \
\
apt-get update; \
apt-get install -y --no-install-recommends \
libc-client-dev \
libcurl4-openssl-dev \
libevent-dev \
libfreetype6-dev \
libicu-dev \
libjpeg-dev \
libkrb5-dev \
libldap2-dev \
libmcrypt-dev \
libmemcached-dev \
@ -40,10 +42,12 @@ RUN set -ex; \
\
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
docker-php-ext-configure gd --with-freetype-dir=/usr --with-png-dir=/usr --with-jpeg-dir=/usr; \
docker-php-ext-configure imap --with-kerberos --with-imap-ssl; \
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
docker-php-ext-install \
exif \
gd \
imap \
intl \
ldap \
opcache \

View file

@ -23,11 +23,13 @@ RUN set -ex; \
\
apt-get update; \
apt-get install -y --no-install-recommends \
libc-client-dev \
libcurl4-openssl-dev \
libevent-dev \
libfreetype6-dev \
libicu-dev \
libjpeg-dev \
libkrb5-dev \
libldap2-dev \
libmcrypt-dev \
libmemcached-dev \
@ -40,10 +42,12 @@ RUN set -ex; \
\
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
docker-php-ext-configure gd --with-freetype-dir=/usr --with-png-dir=/usr --with-jpeg-dir=/usr; \
docker-php-ext-configure imap --with-kerberos --with-imap-ssl; \
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
docker-php-ext-install \
exif \
gd \
imap \
intl \
ldap \
opcache \