mirror of
https://github.com/invoiceninja/dockerfiles.git
synced 2026-02-01 03:37:09 +01:00
Install each extension individually to identify the root cause
This commit is contained in:
16
debian/Dockerfile
vendored
16
debian/Dockerfile
vendored
@@ -63,11 +63,17 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|||||||
# Install PHP extensions
|
# Install PHP extensions
|
||||||
COPY --from=ghcr.io/mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/
|
COPY --from=ghcr.io/mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/
|
||||||
|
|
||||||
RUN install-php-extensions \
|
RUN install-php-extensions bcmath && \
|
||||||
${php_require} \
|
install-php-extensions gd && \
|
||||||
${php_suggest} \
|
install-php-extensions pdo_mysql && \
|
||||||
${php_extra}
|
install-php-extensions zip && \
|
||||||
|
install-php-extensions exif && \
|
||||||
|
install-php-extensions imagick && \
|
||||||
|
install-php-extensions intl && \
|
||||||
|
install-php-extensions pcntl && \
|
||||||
|
install-php-extensions soap && \
|
||||||
|
install-php-extensions saxon-12.5.0 && \
|
||||||
|
install-php-extensions opcache
|
||||||
|
|
||||||
# Configure PHP
|
# Configure PHP
|
||||||
RUN ln -s "${PHP_INI_DIR}/php.ini-production" "${PHP_INI_DIR}/php.ini"
|
RUN ln -s "${PHP_INI_DIR}/php.ini-production" "${PHP_INI_DIR}/php.ini"
|
||||||
|
|||||||
Reference in New Issue
Block a user