0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-04-24 20:34:10 +02:00

Use all available cores to build PHP extensions

Signed-off-by: J0WI <J0WI@users.noreply.github.com>
This commit is contained in:
J0WI 2019-06-27 13:45:39 +02:00
parent f5665e1482
commit 147e2db921
11 changed files with 11 additions and 11 deletions

View file

@ -35,7 +35,7 @@ RUN set -ex; \
\
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 ldap; \
docker-php-ext-install \
docker-php-ext-install -j "$(nproc)" \
exif \
gd \
intl \