Skip to content

Commit 90e7092

Browse files
committed
Support Drupal 11 SQLite version.
1 parent a6ea04a commit 90e7092

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,16 @@ RUN curl https://awscli.amazonaws.com/awscli-exe-linux-"$(uname -m)".zip -o "aws
3939
RUN wget https://github.com/mikefarah/yq/releases/download/v4.21.1/yq_linux_"$(dpkg --print-architecture)".tar.gz -O - |\
4040
tar xz && mv yq_linux_"$(dpkg --print-architecture)" /usr/bin/yq
4141

42+
# Upgrade SQLite for Drupal 11 testing.
43+
# @see https://www.drupal.org/project/drupal/issues/3346338
44+
# @see https://github.com/docksal/service-cli/pull/327/files
45+
RUN set -xe; \
46+
echo "deb https://deb.debian.org/debian testing main" | tee /etc/apt/sources.list.d/testing.list; \
47+
apt-get update >/dev/null; \
48+
apt-get install -y -t testing sqlite3;\
49+
# Cleanup
50+
apt-get clean; rm -rf /var/lib/apt/lists/*
51+
4252
# Install expect, vim
4353
RUN apt-get clean && \
4454
apt update && \

0 commit comments

Comments
 (0)