Dockerfile 406 B

12345678910111213
  1. # Drupal 11 image with Drush + migrate modules for D7 migration testing
  2. FROM drupal:11
  3. # Install Drush and migrate modules (baked in so container is reproducible)
  4. RUN composer require --no-interaction \
  5. drush/drush \
  6. drupal/migrate_plus \
  7. drupal/migrate_tools \
  8. drupal/migrate_upgrade \
  9. && composer clear-cache
  10. # Make drush available on PATH
  11. ENV PATH="/opt/drupal/vendor/bin:${PATH}"