Added Memcached dependency installation in workspace Dockerfile.

This commit is contained in:
Saqib S 2021-04-05 10:36:54 +05:00
parent 3c32dcdceb
commit 258ea23b64

View File

@ -1220,6 +1220,16 @@ RUN if [ ${INSTALL_TERRAFORM} = true ]; then \
&& mv terraform /usr/local/bin \
&& rm terraform_0.10.6_linux_amd64.zip \
;fi
###########################################################################
# Memcached Dependecies:
###########################################################################
RUN if [ ${PHP_FPM_INSTALL_MEMCACHED} = true ]; then \
apt-get -y install php${LARADOCK_PHP_VERSION}-igbinary \
&& apt-get -y install php${LARADOCK_PHP_VERSION}-memcached \
;fi
###########################################################################
# pgsql client
###########################################################################