From bf3442dcc5492248d6738a0a655ff943951f8c43 Mon Sep 17 00:00:00 2001 From: Shiham Abdul Rahman Date: Fri, 7 Oct 2022 16:41:24 +0500 Subject: [PATCH] FIX: MYSQL PHP MODULE INSTALL --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9995115..4bdcb68 100644 --- a/Dockerfile +++ b/Dockerfile @@ -50,7 +50,7 @@ RUN apt install php${PHPVERSION} -y --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' +RUN bash -c 'apt install -y php${PHPVERSION}-mysql --no-install-recommends' #Installing recommended PHP Modules RUN bash -c 'apt install -y php${PHPVERSION}-{fileinfo,bz2,intl} --no-install-recommends'