diff --git a/workspace/Dockerfile b/workspace/Dockerfile index 85fd25d2..04221f67 100644 --- a/workspace/Dockerfile +++ b/workspace/Dockerfile @@ -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 ###########################################################################