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

Include xmlsec in the docker image #5490

Merged
merged 2 commits into from
Jun 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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