Skip to content

Commit 1b73aa7

Browse files
stonebuzzcedric-anne
authored andcommitted
Feat(core): add php-bmath extension
1 parent 66170b5 commit 1b73aa7

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

githubactions-php-apache/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ RUN \
4646
# Install mysqli PHP extension.
4747
&& docker-php-ext-install mysqli \
4848
\
49+
# Install bcmath PHP extension.
50+
&& docker-php-ext-install bcmath \
51+
\
4952
# Install pcntl PHP extension (required for composer-require-checker).
5053
&& docker-php-ext-install pcntl \
5154
\

githubactions-php/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ RUN \
4646
# Install mysqli PHP extension.
4747
&& docker-php-ext-install mysqli \
4848
\
49+
# Install bcmath PHP extension.
50+
&& docker-php-ext-install bcmath \
51+
\
4952
# Install pcntl PHP extension (required for composer-require-checker).
5053
&& docker-php-ext-install pcntl \
5154
\

glpi-development-env/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ RUN apt update \
4848
# Install mysqli PHP extension.
4949
&& docker-php-ext-install mysqli \
5050
\
51+
# Install bcmath PHP extension.
52+
&& docker-php-ext-install bcmath \
53+
\
5154
# Install opcache PHP extension.
5255
&& docker-php-ext-install opcache \
5356
\

glpi-nightly/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ RUN apt-get update \
8888
# Install mysqli PHP extension.
8989
&& docker-php-ext-install mysqli \
9090
\
91+
# Install bcmath PHP extension.
92+
&& docker-php-ext-install bcmath \
93+
\
9194
# Install opcache PHP extension.
9295
&& docker-php-ext-install opcache \
9396
\

0 commit comments

Comments
 (0)