Skip to content

Commit

Permalink
Upgrade SQLite to 3.45 for Drupal 11.
Browse files Browse the repository at this point in the history
  • Loading branch information
jhedstrom committed Oct 8, 2024
1 parent 5e04c85 commit 4ed7ab8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions 8.3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit 4ed7ab8

Please sign in to comment.