FIX: Required PHP Modules

This commit is contained in:
Shihaam Abdul Rahman 2022-10-07 16:39:05 +05:00
parent 454722851f
commit bc7fac9e34
Signed by: shihaam
GPG Key ID: 3B007D22E5584980

View File

@ -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'