Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save siliconmeadow/ad63ae68d414112c366f496471fa82b9 to your computer and use it in GitHub Desktop.
Save siliconmeadow/ad63ae68d414112c366f496471fa82b9 to your computer and use it in GitHub Desktop.
# Drush Docker Container
FROM drush/drush:7-alpine
# Set the Drush version.
ENV DRUSH_VERSION 7.3.0
# Install Drush using Composer.
RUN composer global require drush/drush:"$DRUSH_VERSION" --prefer-dist
# Display which version of Drush was installed
RUN drush --version
RUN drush @none dl registry_rebuild-7.x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment