diff options
author | Erik Johnston <erik@matrix.org> | 2023-09-15 14:39:20 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2023-09-15 14:39:20 +0100 |
commit | 98d39e590a057ae68ea03f47764042dc8f2e8d75 (patch) | |
tree | d63c0dc3f63ccc62bff37571091da9d7a95a7f29 /docker/Dockerfile-workers | |
parent | Add automatic purge after all users forget a room (#15488) (diff) | |
parent | Fix Changelog (diff) | |
download | synapse-98d39e590a057ae68ea03f47764042dc8f2e8d75.tar.xz |
Merge branch 'master' into develop
Diffstat (limited to 'docker/Dockerfile-workers')
-rw-r--r-- | docker/Dockerfile-workers | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/Dockerfile-workers b/docker/Dockerfile-workers index 31d6d33407..2ceb6ab67c 100644 --- a/docker/Dockerfile-workers +++ b/docker/Dockerfile-workers @@ -7,7 +7,7 @@ ARG FROM=matrixdotorg/synapse:$SYNAPSE_VERSION # target image. For repeated rebuilds, this is much faster than apt installing # each time. -FROM docker.io/library/debian:bullseye-slim AS deps_base +FROM docker.io/library/debian:bookworm-slim AS deps_base RUN \ --mount=type=cache,target=/var/cache/apt,sharing=locked \ --mount=type=cache,target=/var/lib/apt,sharing=locked \ @@ -21,7 +21,7 @@ FROM docker.io/library/debian:bullseye-slim AS deps_base # which makes it much easier to copy (but we need to make sure we use an image # based on the same debian version as the synapse image, to make sure we get # the expected version of libc. -FROM docker.io/library/redis:7-bullseye AS redis_base +FROM docker.io/library/redis:7-bookworm AS redis_base # now build the final image, based on the the regular Synapse docker image FROM $FROM |