summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-02-10 18:54:56 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2020-02-10 18:54:56 +0000
commit71d52cca595e148e52db216449f477785431b093 (patch)
tree257bdb7d44b9d9027d5387f818ef8d05887094cd
parentREADME.rst: fix header level (diff)
parentInclude xmlsec in the docker image (diff)
downloadsynapse-71d52cca595e148e52db216449f477785431b093.tar.xz
Include xmlsec in the docker image
-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