From 0abf1a5fb05cfe085924901af49dff451ae250c5 Mon Sep 17 00:00:00 2001 From: Fernando <82854646+FernandosPerez@users.noreply.github.com> Date: Sat, 2 May 2026 19:44:24 -0600 Subject: [PATCH] Install bcmath extension in Dockerfile Added bcmath extension installation to Dockerfile. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a576bddf..f061662d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 . .