Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
@dmartinez
Latest commit 316349e Oct 22, 2024 History
* Update base image
* Bump version

---------

Co-authored-by: David Shafer <dshafer@internet2.edu>
2 contributors

Users who have contributed to this file

@dshafer @dmartinez
FROM i2incommon/shibboleth_sp:3.5.0_10212024_rocky8_multiarch
LABEL version="${VERSION}"
RUN dnf update -y && \
dnf clean all
COPY container_files/httpd/httpd.conf /etc/httpd/conf/httpd.conf
COPY container_files/httpd/proxy.conf /etc/httpd/conf.d/proxy.conf
COPY container_files/httpd/shib.conf /etc/httpd/conf.d/shib.conf
COPY container_files/httpd/ssl.conf /etc/httpd/conf.d/ssl.conf
COPY container_files/httpd/vhost.conf /etc/httpd/conf.d/vhost.conf
COPY container_files/httpd/00-mpm.conf /etc/httpd/conf.modules.d/00-mpm.conf
COPY container_files/shibboleth/attribute-map.xml /etc/shibboleth/attribute-map.xml
COPY container_files/shibboleth/shibboleth2.xml.tpl /etc/shibboleth/shibboleth2.xml.tpl
COPY container_files/system/supervisord.conf /etc/supervisor/supervisord.conf
COPY --chown=root:root container_files/proxy-entrypoint.sh /usr/local/bin/proxy-entrypoint.sh
RUN chmod 755 /usr/local/bin/proxy-entrypoint.sh
ENTRYPOINT [ "/usr/local/bin/proxy-entrypoint.sh" ]
# From base image
CMD [ "/usr/local/bin/startup.sh" ]