mirror of
https://github.com/joomla-docker/docker-joomla.git
synced 2025-02-10 16:08:45 +00:00
Merge pull request #79 from J0WI/nproc
Use all available cores to build PHP extensions
This commit is contained in:
commit
fa97bf94e4
@ -27,7 +27,7 @@ RUN set -ex; \
|
|||||||
\
|
\
|
||||||
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
|
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
|
||||||
docker-php-ext-configure ldap; \
|
docker-php-ext-configure ldap; \
|
||||||
docker-php-ext-install \
|
docker-php-ext-install -j "$(nproc)" \
|
||||||
bz2 \
|
bz2 \
|
||||||
gd \
|
gd \
|
||||||
ldap \
|
ldap \
|
||||||
|
@ -24,7 +24,7 @@ RUN set -ex; \
|
|||||||
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
|
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
|
||||||
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
|
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
|
||||||
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
|
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
|
||||||
docker-php-ext-install \
|
docker-php-ext-install -j "$(nproc)" \
|
||||||
bz2 \
|
bz2 \
|
||||||
gd \
|
gd \
|
||||||
ldap \
|
ldap \
|
||||||
|
@ -26,7 +26,7 @@ RUN set -ex; \
|
|||||||
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
|
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
|
||||||
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
|
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
|
||||||
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
|
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
|
||||||
docker-php-ext-install \
|
docker-php-ext-install -j "$(nproc)" \
|
||||||
bz2 \
|
bz2 \
|
||||||
gd \
|
gd \
|
||||||
ldap \
|
ldap \
|
||||||
|
@ -26,7 +26,7 @@ RUN set -ex; \
|
|||||||
\
|
\
|
||||||
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
|
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
|
||||||
docker-php-ext-configure ldap; \
|
docker-php-ext-configure ldap; \
|
||||||
docker-php-ext-install \
|
docker-php-ext-install -j "$(nproc)" \
|
||||||
bz2 \
|
bz2 \
|
||||||
gd \
|
gd \
|
||||||
ldap \
|
ldap \
|
||||||
|
@ -23,7 +23,7 @@ RUN set -ex; \
|
|||||||
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
|
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
|
||||||
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
|
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
|
||||||
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
|
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
|
||||||
docker-php-ext-install \
|
docker-php-ext-install -j "$(nproc)" \
|
||||||
bz2 \
|
bz2 \
|
||||||
gd \
|
gd \
|
||||||
ldap \
|
ldap \
|
||||||
|
@ -25,7 +25,7 @@ RUN set -ex; \
|
|||||||
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
|
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
|
||||||
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
|
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
|
||||||
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
|
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
|
||||||
docker-php-ext-install \
|
docker-php-ext-install -j "$(nproc)" \
|
||||||
bz2 \
|
bz2 \
|
||||||
gd \
|
gd \
|
||||||
ldap \
|
ldap \
|
||||||
|
@ -25,7 +25,7 @@ RUN set -ex; \
|
|||||||
\
|
\
|
||||||
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
|
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
|
||||||
docker-php-ext-configure ldap; \
|
docker-php-ext-configure ldap; \
|
||||||
docker-php-ext-install \
|
docker-php-ext-install -j "$(nproc)" \
|
||||||
bz2 \
|
bz2 \
|
||||||
gd \
|
gd \
|
||||||
ldap \
|
ldap \
|
||||||
|
@ -22,7 +22,7 @@ RUN set -ex; \
|
|||||||
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
|
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
|
||||||
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
|
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
|
||||||
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
|
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
|
||||||
docker-php-ext-install \
|
docker-php-ext-install -j "$(nproc)" \
|
||||||
bz2 \
|
bz2 \
|
||||||
gd \
|
gd \
|
||||||
ldap \
|
ldap \
|
||||||
|
@ -26,7 +26,7 @@ RUN set -ex; \
|
|||||||
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
|
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
|
||||||
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
|
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
|
||||||
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
|
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
|
||||||
docker-php-ext-install \
|
docker-php-ext-install -j "$(nproc)" \
|
||||||
bz2 \
|
bz2 \
|
||||||
gd \
|
gd \
|
||||||
ldap \
|
ldap \
|
||||||
|
@ -26,7 +26,7 @@ RUN set -ex; \
|
|||||||
\
|
\
|
||||||
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
|
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
|
||||||
docker-php-ext-configure ldap; \
|
docker-php-ext-configure ldap; \
|
||||||
docker-php-ext-install \
|
docker-php-ext-install -j "$(nproc)" \
|
||||||
bz2 \
|
bz2 \
|
||||||
gd \
|
gd \
|
||||||
ldap \
|
ldap \
|
||||||
|
@ -23,7 +23,7 @@ RUN set -ex; \
|
|||||||
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
|
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
|
||||||
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
|
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
|
||||||
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
|
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
|
||||||
docker-php-ext-install \
|
docker-php-ext-install -j "$(nproc)" \
|
||||||
bz2 \
|
bz2 \
|
||||||
gd \
|
gd \
|
||||||
ldap \
|
ldap \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user