summary refs log tree commit diff
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2019-06-18 22:35:19 +0100
committerRichard van der Hoff <richard@matrix.org>2019-06-18 22:35:19 +0100
commit8e7ef3a0237c431ad6e5d2868571a43c7bdbb81d (patch)
treec5d2ec9a18bd6f53da957d93b6a1e4364d94b1be
parentFix seven contrib files with Python syntax errors (#5446) (diff)
downloadsynapse-8e7ef3a0237c431ad6e5d2868571a43c7bdbb81d.tar.xz
Include xmlsec in the docker image
Fixes #5467.
-rw-r--r--docker/Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
index c35da67a2a..24921eb098 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -57,6 +57,7 @@ RUN pip install --prefix="/install" --no-warn-script-location \
 
 FROM docker.io/python:${PYTHON_VERSION}-alpine3.8
 
+# xmlsec is required for saml support
 RUN apk add --no-cache --virtual .runtime_deps \
         libffi \
         libjpeg-turbo \
@@ -64,7 +65,8 @@ RUN apk add --no-cache --virtual .runtime_deps \
         libxslt \
         libpq \
         zlib \
-        su-exec
+        su-exec \
+        xmlsec
 
 COPY --from=builder /install /usr/local
 COPY ./docker/start.py /start.py