From 95a90c80303f3087c1e2d1b2aff626469b38c8b5 Mon Sep 17 00:00:00 2001 From: Shiham Abdul Rahman Date: Fri, 7 Oct 2022 16:43:08 +0500 Subject: [PATCH] FIX: REDIS MYSQL MODULE INSTALL, TYPO REDIT --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4bdcb68..ebc78ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -58,12 +58,10 @@ RUN bash -c 'apt install -y php${PHPVERSION}-{fileinfo,bz2,intl} --no-install-re #Installing Optional Specific app PHP Modules RUN bash -c 'apt install -y php${PHPVERSION}-{gmp,exif} --no-install-recommends' #Installing Optional server performance enhancement PHP Modules -RUN bash -c 'apt install -y php${PHPVERSION}-{apcu,memcached,redit} --no-install-recommends' +RUN bash -c 'apt install -y php${PHPVERSION}-{apcu,memcached,redis} --no-install-recommends' #Installing optional PHP modules and tools for preview generation #Maybe add LibreOffice here RUN bash -c 'apt install -y php${PHPVERSION}-{imagick} imagick ffmpeg libreoffice --no-install-recommends' -#Installing Optional server performance enhancement PHP Modules -RUN bash -c 'apt install -y php${PHPVERSION}-{apcu,memcached,redis} --no-install-recommends' #Installing Optional cli enhancement PHP Modules RUN bash -c 'apt install -y php${PHPVERSION}-{pcntl} --no-install-recommends'