Permalink
Cannot retrieve contributors at this time
shib-idp-appliance/Dockerfile
Go to fileFROM bigfleet/shibboleth_idp | |
ARG maintainer=tier | |
ARG imagename=shibboleth_idp | |
ARG version=3.2.1 | |
ENV VERSION=$version | |
ENV JAVA_OPTS=-Xmx1500m -XX:MaxPermSize=128m | |
RUN chown -R root:root /opt/shibboleth/shibboleth-identity-provider-$version && \ | |
rm -rf /usr/local/tomcat/webapps/* && \ | |
ANT_OPTS="-Didp.target.dir=/opt/shibboleth/current" /opt/shibboleth/current/bin/build.sh && \ | |
ln -s /opt/shibboleth/current /opt/shibboleth-idp && \ | |
ln -s /opt/shibboleth-idp/war/idp.war $CATALINA_HOME/webapps/ROOT.war && \ | |
touch /usr/local/tomcat/logs/voltest && \ | |
touch /opt/shibboleth/shibboleth-identity-provider-$version/logs/voltest | |
VOLUME ["/usr/local/tomcat/logs", "/opt/shibboleth/shibboleth-identity-provider-$VERSION/logs"] | |
EXPOSE 8080 | |
CMD ["catalina.sh", "run"] |