feat: ajout extension bcmath dans les Dockerfiles PHP

docker/php/dev/Dockerfile:
- Ajout de bcmath dans docker-php-ext-install (calculs decimaux precis
  pour les montants Stripe, TVA, totaux factures)

docker/php/prod/Dockerfile:
- Meme ajout de bcmath

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Serreau Jovann
2026-04-02 23:01:33 +02:00
parent 7a9c9f3edf
commit 0a7eb50e37
2 changed files with 2 additions and 0 deletions

View File

@@ -27,6 +27,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
zip \
intl \
gd \
bcmath \
&& pecl install redis imagick pcov \
&& docker-php-ext-enable redis imagick pcov \
&& groupadd -g 1000 appuser && useradd -u 1000 -g appuser -m appuser

View File

@@ -22,6 +22,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
zip \
intl \
gd \
bcmath \
exif \
opcache \
&& pecl install redis imagick \