diff options
author | ADRN <adrien@luxeylab.net> | 2024-09-26 18:58:51 +0200 |
---|---|---|
committer | ADRN <adrien@luxeylab.net> | 2024-09-26 18:58:51 +0200 |
commit | fabf31a7205163aa55e001b58e7cc08c7c3eeb52 (patch) | |
tree | a4c8ced9356cd6039399757608d4136b176ccc32 /cluster/prod/app/matrix/build/matrix-synapse | |
parent | c044078a6e15b90dd4e59021b2196997cbdfe689 (diff) | |
download | nixcfg-fabf31a7205163aa55e001b58e7cc08c7c3eeb52.tar.gz nixcfg-fabf31a7205163aa55e001b58e7cc08c7c3eeb52.zip |
update Synapse to v1.104.0 & Riot to v1.11.78
Diffstat (limited to 'cluster/prod/app/matrix/build/matrix-synapse')
-rw-r--r-- | cluster/prod/app/matrix/build/matrix-synapse/Dockerfile | 9 |
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} |