File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,16 @@ RUN curl https://awscli.amazonaws.com/awscli-exe-linux-"$(uname -m)".zip -o "aws
3939RUN 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
4353RUN apt-get clean && \
4454 apt update && \
You can’t perform that action at this time.
0 commit comments