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
 
 
Cannot retrieve contributors at this time

COmanage Shibboleth SP Base

Intended to build a Shibboleth SP for Apache HTTP Server image intended to be used with COmanage Registry or COmanage Match.

The image built from this Dockerfile is primarily intended to be used as a base for building other COmanage images using Dockerfile multi-stage build functionality.

Build Arguments

The following arguments may be provided when building but are not required since the Dockerfile uses the latest recommended values:

--build-arg LOG4SHIB_URL=<URL to log4shib source tarball>
--build-arg OPENSAMLC_URL=<URL to opensaml source tarball>
--build-arg SHIBBOLETH_SP_URL=<URL to Shibboleth SP source tarball>
--build-arg XERCESC_URL=<URL to xerces-c source tarball>
--build-arg XMLSECC_URL=<URL to xml-security-c source tarball>
--build-arg XMLTOOLING_URL=<URL to xmltooling source tarball>

Building

docker build \
  -t comanage-shibboleth-sp-base:<tag> .

Building Example

export COMANAGE_SHIBBOLETH_SP_VERSION=3.2.3
export COMANAGE_SHIBBOLETH_SP_BASE_IMAGE_VERSION=1
TAG="${COMANAGE_SHIBBOLETH_SP_VERSION}-${COMANAGE_SHIBBOLETH_SP_BASE_IMAGE_VERSION}"
docker build \
    -t comanage-shibboleth-sp-base:$TAG .