diff options
author | Erik Johnston <erikj@matrix.org> | 2023-09-15 13:14:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-15 13:14:10 +0100 |
commit | 3cf1a3aa17423f954a9d46de4cced906670d7500 (patch) | |
tree | 9bae18511d57ac01bcc9d3048b5e40c88621336f /docker/editable.Dockerfile | |
parent | 1.92.1 (diff) | |
download | synapse-3cf1a3aa17423f954a9d46de4cced906670d7500.tar.xz |
Use bookwork as docker base image (#16324)
Diffstat (limited to '')
-rw-r--r-- | docker/editable.Dockerfile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docker/editable.Dockerfile b/docker/editable.Dockerfile index c53ce1c718..f18cf6a5d9 100644 --- a/docker/editable.Dockerfile +++ b/docker/editable.Dockerfile @@ -8,9 +8,9 @@ ARG PYTHON_VERSION=3.9 ### ### Stage 0: generate requirements.txt ### -# We hardcode the use of Debian bullseye here because this could change upstream -# and other Dockerfiles used for testing are expecting bullseye. -FROM docker.io/library/python:${PYTHON_VERSION}-slim-bullseye +# We hardcode the use of Debian bookworm here because this could change upstream +# and other Dockerfiles used for testing are expecting bookworm. +FROM docker.io/library/python:${PYTHON_VERSION}-slim-bookworm # Install Rust and other dependencies (stolen from normal Dockerfile) # install the OS build deps @@ -33,7 +33,7 @@ RUN \ gosu \ libjpeg62-turbo \ libpq5 \ - libwebp6 \ + libwebp7 \ xmlsec1 \ libjemalloc2 \ && rm -rf /var/lib/apt/lists/* |