From bc7fac9e34fc50d7706873d3c28e240a6233333c Mon Sep 17 00:00:00 2001 From: Shiham Abdul Rahman Date: Fri, 7 Oct 2022 16:39:05 +0500 Subject: [PATCH] FIX: Required PHP Modules --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8aa4c7c..37a99c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,7 +47,7 @@ RUN apt install php${PHPVERSION} -y --no-install-recommends \ && mkdir /run/php/ #Installing Required PHP Modules -RUN bash -c 'apt install -y php${PHPVERSION}-{ctype,curl,dom,gd,json,libxml,mbstring,openssl,posix,session,simplexml,xmlreader,xmlwriter,zip,zlib} --no-install-recommends' +RUN bash -c 'apt install -y php${PHPVERSION}-{fpm,cli,bcmath,bz2,intl,common,ctype,curl,dom,gd,mbstring,posix,simplexml,xmlreader,xmlwriter,zip} --no-install-recommends' #Installing database connector PHP Modules RUN bash -c 'apt install -y php${PHPVERSION}-{pdo_mysql} --no-install-recommends'