Add Drush and Opcache to laradock because they are needed for drupal development.

This commit is contained in:
Tim Bracken
2016-08-16 15:13:58 -04:00
parent c324114b7a
commit 95ef5e1e70
3 changed files with 26 additions and 0 deletions

View File

@ -100,6 +100,12 @@ RUN if [ ${INSTALL_MEMCACHED} = true ]; then \
&& docker-php-ext-enable memcached \
;fi
#####################################
# Opcache:
#####################################
RUN docker-php-ext-install opcache
RUN docker-php-ext-enable opcache
#
#--------------------------------------------------------------------------