Install bcmath extension in Dockerfile

Added bcmath extension installation to Dockerfile.
This commit is contained in:
Fernando
2026-05-02 19:44:24 -06:00
committed by GitHub
parent 1d91bbc2e7
commit 0abf1a5fb0
+1 -1
View File
@@ -1,7 +1,7 @@
FROM php:8.2-fpm-alpine
RUN apk add --no-cache nginx nodejs npm \
&& docker-php-ext-install pdo pdo_mysql mysqli
&& docker-php-ext-install pdo pdo_mysql mysqli bcmath
WORKDIR /app
COPY . .