fix: Fix Drush install for the workspace

This commit is contained in:
Fernado Pinheiro 2018-05-02 10:49:19 -03:00
parent 0c41fceae1
commit dac336e6a1

View File

@ -302,10 +302,12 @@ RUN if [ ${INSTALL_SWOOLE} = true ]; then \
USER root
ARG INSTALL_DRUSH=false
ARG DRUSH_VERSION=${DRUSH_VERSION}
RUN if [ ${INSTALL_DRUSH} = true ]; then \
apt-get update -yqq && \
apt-get -y install mysql-client && \
# Install Drush 8 with the phar file.
# Install Drush with the phar file.
curl -fsSL -o /usr/local/bin/drush https://github.com/drush-ops/drush/releases/download/${DRUSH_VERSION}/drush.phar | bash && \
chmod +x /usr/local/bin/drush && \
drush core-status \
@ -320,6 +322,7 @@ USER root
ARG INSTALL_DRUPAL_CONSOLE=false
RUN if [ ${INSTALL_DRUPAL_CONSOLE} = true ]; then \
apt-get update -yqq && \
apt-get -y install mysql-client && \
curl https://drupalconsole.com/installer -L -o drupal.phar && \
mv drupal.phar /usr/local/bin/drupal && \