Added Memcached dependency installation in workspace Dockerfile.
This commit is contained in:
parent
3c32dcdceb
commit
258ea23b64
|
@ -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
|
||||
###########################################################################
|
||||
|
|
Loading…
Reference in New Issue