In Dockerfile: https://github.com/deviantintegral/drupal_tests/blob/master/Dockerfile#L62 We move the settings to outside the HTML folder, is this intentional? I found some code in test-js.sh https://github.com/deviantintegral/drupal_tests/blob/master/hooks/test-js.sh#L30 its doing: ``` # Restore and update a previously installed Drupal site. mv ../settings.php sites/default/ ``` I havent looked too deeply but why not move the settings.php to the correct place to begin with: ``` COPY settings.php /var/www/sites/default/ ``` and remove this step in test-js.sh https://github.com/deviantintegral/drupal_tests/blob/master/hooks/test-js.sh#L30
In Dockerfile: https://github.com/deviantintegral/drupal_tests/blob/master/Dockerfile#L62
We move the settings to outside the HTML folder, is this intentional?
I found some code in test-js.sh
https://github.com/deviantintegral/drupal_tests/blob/master/hooks/test-js.sh#L30
its doing:
I havent looked too deeply but why not move the settings.php to the correct place to begin with:
and remove this step in test-js.sh
https://github.com/deviantintegral/drupal_tests/blob/master/hooks/test-js.sh#L30