# 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 \
    && composer clear-cache

# Make drush available on PATH
ENV PATH="/opt/drupal/vendor/bin:${PATH}"
