Skip to content

Commit

Permalink
Update xmlsec dependency to xmlsec-dev in Dockerfile to fix error `un…
Browse files Browse the repository at this point in the history
…able to load xmlsec-openssl library` in pysaml2 package for SSO
  • Loading branch information
MarkCalvert committed Sep 3, 2024
1 parent c9313de commit 570a0c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ckan/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ RUN for d in $APP_DIR/patches/*; do \
## DBCA specific configuration ##

# ckanext-saml2auth dependencies
RUN apk add xmlsec
RUN apk add xmlsec-dev
COPY saml ${APP_DIR}/saml

# Override the default start_ckan.sh script
Expand Down
4 changes: 2 additions & 2 deletions ckan/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ RUN for d in $APP_DIR/patches/*; do \
## DBCA specific configuration ##

# ckanext-saml2auth dependencies
RUN apk add xmlsec
RUN apk add xmlsec-dev
COPY saml ${APP_DIR}/saml

# Override the default dbca_start_ckan_development.sh script
Expand All @@ -77,4 +77,4 @@ RUN chown -R ckan:ckan $APP_DIR && \
chown -R ckan:ckan /usr/bin/

# Set the default user to ckan
USER ckan
USER ckan

0 comments on commit 570a0c9

Please sign in to comment.