aboutsummaryrefslogtreecommitdiff
path: root/cluster/prod/app/matrix/build/matrix-synapse/Dockerfile
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2022-08-25 01:02:16 +0200
committerQuentin Dufour <quentin@deuxfleurs.fr>2022-08-25 01:02:16 +0200
commite37c1f9057ed986ac50b86463a4dbe6bf5d77f02 (patch)
tree5f5757bde3cf8a694a70bd11afdcdf9b87806db8 /cluster/prod/app/matrix/build/matrix-synapse/Dockerfile
parent3be2659aa19abfb7e676d33e9e7e1357c790a383 (diff)
downloadnixcfg-e37c1f9057ed986ac50b86463a4dbe6bf5d77f02.tar.gz
nixcfg-e37c1f9057ed986ac50b86463a4dbe6bf5d77f02.zip
Deploy Matrix
Diffstat (limited to 'cluster/prod/app/matrix/build/matrix-synapse/Dockerfile')
-rw-r--r--cluster/prod/app/matrix/build/matrix-synapse/Dockerfile52
1 files changed, 52 insertions, 0 deletions
diff --git a/cluster/prod/app/matrix/build/matrix-synapse/Dockerfile b/cluster/prod/app/matrix/build/matrix-synapse/Dockerfile
new file mode 100644
index 0000000..d410779
--- /dev/null
+++ b/cluster/prod/app/matrix/build/matrix-synapse/Dockerfile
@@ -0,0 +1,52 @@
+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 \
+ python3 \
+ python3-pip \
+ python3-dev \
+ python3-setuptools \
+ libffi-dev \
+ build-essential \
+ libssl-dev \
+ libjpeg-dev \
+ libjpeg62-turbo-dev \
+ libxml2-dev \
+ zlib1g-dev \
+ # postgresql-dev \
+ libpq-dev \
+ virtualenv \
+ libxslt1-dev \
+ git && \
+ 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] && \
+ pip3 install \
+ git+https://github.com/matrix-org/synapse-s3-storage-provider.git@${S3_VERSION}
+
+FROM amd64/debian:buster
+
+RUN apt-get update && \
+ apt-get -qq -y full-upgrade && \
+ apt-get install -y \
+ python3 \
+ python3-distutils \
+ libffi6 \
+ libjpeg62-turbo \
+ libssl1.1 \
+ libxslt1.1 \
+ libpq5 \
+ zlib1g \
+ libjemalloc2 \
+ ca-certificates
+
+ENV LD_PRELOAD /usr/lib/x86_64-linux-gnu/libjemalloc.so.2
+COPY --from=builder /root/matrix-env /root/matrix-env
+COPY matrix-s3-async /usr/local/bin/matrix-s3-async
+COPY entrypoint.sh /usr/local/bin/entrypoint
+
+ENTRYPOINT ["/usr/local/bin/entrypoint"]