aboutsummaryrefslogtreecommitdiff
path: root/cluster/prod/app/matrix/build/matrix-synapse/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'cluster/prod/app/matrix/build/matrix-synapse/Dockerfile')
-rw-r--r--cluster/prod/app/matrix/build/matrix-synapse/Dockerfile9
1 files changed, 5 insertions, 4 deletions
diff --git a/cluster/prod/app/matrix/build/matrix-synapse/Dockerfile b/cluster/prod/app/matrix/build/matrix-synapse/Dockerfile
index 2ab0b98..5a6f709 100644
--- a/cluster/prod/app/matrix/build/matrix-synapse/Dockerfile
+++ b/cluster/prod/app/matrix/build/matrix-synapse/Dockerfile
@@ -1,4 +1,4 @@
-FROM amd64/debian:bookworm as builder
+FROM amd64/debian:trixie as builder
ARG VERSION
ARG S3_VERSION
@@ -22,11 +22,12 @@ RUN apt-get update && \
libpq-dev \
virtualenv \
libxslt1-dev \
- git && \
- virtualenv /root/matrix-env -p /usr/bin/python3 && \
+ git
+
+RUN virtualenv /root/matrix-env -p /usr/bin/python3 && \
. /root/matrix-env/bin/activate && \
pip3 install \
- https://github.com/matrix-org/synapse/archive/v${VERSION}.tar.gz#egg=matrix-synapse[matrix-synapse-ldap3,postgres,resources.consent,saml2,url_preview] && \
+ https://github.com/element-hq/synapse/archive/${VERSION}.tar.gz#egg=matrix-synapse[matrix-synapse-ldap3,postgres,resources.consent,saml2,url_preview] && \
pip3 install \
git+https://github.com/matrix-org/synapse-s3-storage-provider.git@${S3_VERSION}