From 4ed7ab89aa978222ddbe4994365c575d679cc2c2 Mon Sep 17 00:00:00 2001 From: Jonathan Hedstrom Date: Tue, 8 Oct 2024 12:55:37 -0700 Subject: [PATCH] Upgrade SQLite to 3.45 for Drupal 11. Closes #326 --- 8.3/Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/8.3/Dockerfile b/8.3/Dockerfile index 8a6d1c49..10c6289e 100644 --- a/8.3/Dockerfile +++ b/8.3/Dockerfile @@ -214,6 +214,15 @@ RUN set -xe; \ # Cleanup apt-get clean; rm -rf /var/lib/apt/lists/* +# Upgrade SQLite for Drupal 11 testing. +# @see https://www.drupal.org/project/drupal/issues/3346338 +RUN set -xe; \ + echo "deb https://deb.debian.org/debian testing main" | tee /etc/apt/sources.list.d/testing.list; \ + apt-get update >/dev/null; \ + apt-get install -y -t testing sqlite3;\ + # Cleanup + apt-get clean; rm -rf /var/lib/apt/lists/* + # All further RUN commands will run as the "docker" user USER docker SHELL ["/bin/bash", "-c"]