Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #5490 from matrix-org/rav/xmlsec_in_docker
Browse files Browse the repository at this point in the history
Include xmlsec in the docker image
  • Loading branch information
richvdh authored Jun 19, 2019
2 parents 10f9e35 + b093cfb commit ceb2fa6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.d/5490.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix failure to start under docker with SAML support enabled.
4 changes: 3 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,16 @@ 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 \
libressl \
libxslt \
libpq \
zlib \
su-exec
su-exec \
xmlsec

COPY --from=builder /install /usr/local
COPY ./docker/start.py /start.py
Expand Down

0 comments on commit ceb2fa6

Please sign in to comment.