Dockerfile 637 B

12345678910111213141516171819
  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. drupal/smtp \
  10. drupal/views_aggregator \
  11. drupal/views_data_export \
  12. && composer clear-cache
  13. # Custom moodul: parandab views_data_export rea renderdamise D11-s.
  14. COPY custom_modules/mustikas_export /opt/drupal/web/modules/custom/mustikas_export
  15. # Make drush available on PATH
  16. ENV PATH="/opt/drupal/vendor/bin:${PATH}"