Merge pull request #2932 from iamsaqibs/memcached-issue-with-php7.1

Memcached not working in workspace with php 7.
This commit is contained in:
Shao Yu-Lung (Allen)
2021-04-05 23:56:46 +08:00
committed by GitHub
3 changed files with 14 additions and 0 deletions

View File

@ -1221,6 +1221,18 @@ RUN if [ ${INSTALL_TERRAFORM} = true ]; then \
&& mv terraform /usr/local/bin \
&& rm terraform_0.10.6_linux_amd64.zip \
;fi
###########################################################################
# Memcached Dependecies:
###########################################################################
ARG INSTALL_MEMCACHED=false
RUN if [ ${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
###########################################################################