Permalink
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?
docker-shib-proxy/Dockerfile
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update base image * Bump version --------- Co-authored-by: David Shafer <dshafer@internet2.edu>
25 lines (18 sloc)
1.01 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" ] |