Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .docker/Dockerfile.paas
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,9 @@ COPY . /app
# Set up Drush aliases.
COPY .docker/config/cli/govcms.site.yml /app/drush/sites/

# Ensure drush-launcher instead of Drush 8 in /home/.composer
# @todo Make drush launcher available upstream, @see https://github.com/amazeeio/lagoon/pull/1183
RUN wget -O /usr/local/bin/drush "https://github.com/drush-ops/drush-launcher/releases/download/0.6.0/drush.phar" \
&& chmod +x /usr/local/bin/drush \
&& rm -Rf /home/.composer/vendor/bin
# Remove Drush 8 in /home/.composer.
RUN rm -Rf /home/.composer/vendor/bin
ENV PATH="/app/vendor/bin:${PATH}"

COPY --from=base /app/web/sites/all/modules/ /app/web/sites/all/modules/

Expand Down