# Drupal 11 image with Drush + migrate modules for D7 migration testing FROM drupal:11 # Install Drush and migrate modules (baked in so container is reproducible) RUN composer require --no-interaction \ drush/drush \ drupal/migrate_plus \ drupal/migrate_tools \ drupal/migrate_upgrade \ drupal/smtp \ drupal/views_aggregator \ drupal/views_data_export \ && composer clear-cache # Make drush available on PATH ENV PATH="/opt/drupal/vendor/bin:${PATH}"