summaryrefslogtreecommitdiffstats
path: root/15.0
diff options
context:
space:
mode:
Diffstat (limited to '15.0')
-rw-r--r--15.0/apache/Dockerfile2
-rw-r--r--15.0/fpm-alpine/Dockerfile2
-rw-r--r--15.0/fpm/Dockerfile2
3 files changed, 3 insertions, 3 deletions
diff --git a/15.0/apache/Dockerfile b/15.0/apache/Dockerfile
index 88a69654..675fa988 100644
--- a/15.0/apache/Dockerfile
+++ b/15.0/apache/Dockerfile
@@ -42,7 +42,7 @@ 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 --with-webp-dir=/usr; \
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
- docker-php-ext-install \
+ docker-php-ext-install -j "$(nproc)" \
exif \
gd \
intl \
diff --git a/15.0/fpm-alpine/Dockerfile b/15.0/fpm-alpine/Dockerfile
index 6163bb24..3d9666df 100644
--- a/15.0/fpm-alpine/Dockerfile
+++ b/15.0/fpm-alpine/Dockerfile
@@ -36,7 +36,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 \
diff --git a/15.0/fpm/Dockerfile b/15.0/fpm/Dockerfile
index 9509fb2d..125957db 100644
--- a/15.0/fpm/Dockerfile
+++ b/15.0/fpm/Dockerfile
@@ -42,7 +42,7 @@ 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 --with-webp-dir=/usr; \
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
- docker-php-ext-install \
+ docker-php-ext-install -j "$(nproc)" \
exif \
gd \
intl \