diff options
Diffstat (limited to 'app/im/build')
-rw-r--r-- | app/im/build/matrix-synapse/Dockerfile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/im/build/matrix-synapse/Dockerfile b/app/im/build/matrix-synapse/Dockerfile index b8480d5..20650d0 100644 --- a/app/im/build/matrix-synapse/Dockerfile +++ b/app/im/build/matrix-synapse/Dockerfile @@ -1,6 +1,7 @@ FROM amd64/debian:buster as builder ARG VERSION +ARG S3_VERSION RUN apt-get update && \ apt-get -qq -y full-upgrade && \ apt-get install -y \ @@ -22,7 +23,9 @@ RUN apt-get update && \ 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/matrix-org/synapse/archive/v${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} FROM amd64/debian:buster |