From b50d59f0bb273ccc16347542ad61ff480884ffd7 Mon Sep 17 00:00:00 2001 From: Torben Nehmer Date: Wed, 2 Feb 2022 18:03:32 +0100 Subject: [PATCH] Upgrade to Drupal 9.3, 8 is EOL --- Dockerfile | 2 +- build-container.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b647e18..037fb0b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM drupal:8 +FROM drupal:9.3 LABEL maintainer="Torben Nehmer " RUN set -ex; \ diff --git a/build-container.sh b/build-container.sh index 0695c0c..74e21fb 100755 --- a/build-container.sh +++ b/build-container.sh @@ -5,5 +5,5 @@ set -ex # Required, otherwise package building will fail. echo N | sudo tee /sys/module/overlay/parameters/metacopy -docker pull drupal:8 +docker pull drupal:9.3 docker build --force-rm -t nathan/drupal8 -f Dockerfile build