Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
159 additions
and
120 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
FROM tier/shib-idp:newJavaTomcat | ||
|
||
# The build args below can be used at build-time to tell the build process where to find your config files. This is for a completely burned-in config. | ||
ARG TOMCFG=config/tomcat | ||
ARG TOMCERT=credentials/tomcat | ||
ARG TOMWWWROOT=wwwroot | ||
ARG SHBCFG=config/shib-idp/conf | ||
ARG SHBCREDS=credentials/shib-idp | ||
ARG SHBVIEWS=config/shib-idp/views | ||
ARG SHBEDWAPP=config/shib-idp/edit-webapp | ||
ARG SHBMSGS=config/shib-idp/messages | ||
ARG SHBMD=config/shib-idp/metadata | ||
|
||
# copy in the needed config files | ||
ADD ${TOMCFG} /usr/local/tomcat/conf | ||
ADD ${TOMCERT} /opt/certs | ||
ADD ${TOMWWWROOT} /usr/local/tomcat/webapps/ROOT | ||
ADD ${SHBCFG} /opt/shibboleth-idp/conf | ||
ADD ${SHBCREDS} /opt/shibboleth-idp/credentials | ||
ADD ${SHBVIEWS} /opt/shibboleth-idp/views | ||
ADD ${SHBEDWAPP} /opt/shibboleth-idp/edit-webapp | ||
ADD ${SHBMSGS} /opt/shibboleth-idp/messages | ||
ADD ${SHBMD} /opt/shibboleth-idp/metadata | ||
|
||
|
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