diff options
-rw-r--r-- | Dockerfile | 4 | ||||
-rw-r--r-- | jetty_base/start.d/.DS_Store | bin | 0 -> 6148 bytes | |||
-rw-r--r-- | jetty_base/webapps/idp.xml | 7 |
3 files changed, 10 insertions, 1 deletions
@@ -17,9 +17,11 @@ RUN apk --no-cache add bash apache-ant sqlite curl && \ apk --no-cache del apache-ant && \ rm -rf shibboleth-identity-provider* install.properties + +COPY jetty_base /var/lib/jetty #RUN mkdir -p persistent-id && sqlite3 persistent-id/shibboleth.db < /tmp/shibboleth.db.ddl && rm -f /tmp/shibboleth.db.ddl #ENV JETTY_BASE /oetty-base #COPY jetty_base/ $JETTY_BASE/ -#WORKDIR $JETTY_BASE +WORKDIR $JETTY_BASE diff --git a/jetty_base/start.d/.DS_Store b/jetty_base/start.d/.DS_Store Binary files differnew file mode 100644 index 0000000..5008ddf --- /dev/null +++ b/jetty_base/start.d/.DS_Store diff --git a/jetty_base/webapps/idp.xml b/jetty_base/webapps/idp.xml new file mode 100644 index 0000000..dbe3671 --- /dev/null +++ b/jetty_base/webapps/idp.xml @@ -0,0 +1,7 @@ +<Configure class="org.eclipse.jetty.webapp.WebAppContext"> + <Set name="war">/opt/shibboleth-idp/war/idp.war</Set> + <Set name="contextPath">/idp</Set> + <Set name="extractWAR">false</Set> + <Set name="copyWebDir">false</Set> + <Set name="copyWebInf">true</Set> +</Configure> |