mirror of
https://github.com/invoiceninja/dockerfiles.git
synced 2025-12-31 19:47:25 +01:00
Merge pull request #708 from turbo124/octane
Debug php extension installer
This commit is contained in:
2
.github/workflows/build-image-debian.yaml
vendored
2
.github/workflows/build-image-debian.yaml
vendored
@@ -1,4 +1,4 @@
|
||||
name: Build Debian OctaneContainer Image
|
||||
name: Build Debian Octane Container Image
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
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
|
||||
COPY --from=ghcr.io/mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/
|
||||
|
||||
RUN install-php-extensions \
|
||||
${php_require} \
|
||||
${php_suggest} \
|
||||
${php_extra}
|
||||
|
||||
RUN install-php-extensions bcmath && \
|
||||
install-php-extensions gd && \
|
||||
install-php-extensions pdo_mysql && \
|
||||
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
|
||||
RUN ln -s "${PHP_INI_DIR}/php.ini-production" "${PHP_INI_DIR}/php.ini"
|
||||
|
||||
Reference in New Issue
Block a user