Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Update Dockerfile for Drupal 10 #277

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions drupal/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM drupal:9-apache
FROM drupal:10-apache

###
#
Expand Down Expand Up @@ -78,12 +78,12 @@ RUN composer create-project --no-install acquia/drupal-recommended-project /opt/
WORKDIR /opt/drupal
COPY import-db settings.php.cat /opt/drupal

# The drupal:9-apache base container uses `web` as its document root.
# The drupal:10-apache base container uses `web` as its document root.
RUN sed -i -e 's!docroot!web!g' composer.json

# This can be also used for requiring specific constraints for dependencies that
# have incompatible releases.
RUN composer require drupal/acquia_cms_starter
RUN composer install

# Allow the caller to specify MySQL connection information. This will be
# written to settings.php, but can overridden at runtime by providing a
Expand Down