Created
May 9, 2019 13:48
-
-
Save siliconmeadow/ad63ae68d414112c366f496471fa82b9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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