diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,6 @@ MAINTAINER Jesper B. Rosenkilde <jbr@nordu.net> ENV IDP_VERSION 3.3.0 COPY install.properties /opt/ -COPY secrets.properties /opt/ COPY shibboleth-identity-provider-${IDP_VERSION}.tar.gz.sha256 /opt/ COPY shibboleth.db.ddl /tmp/ WORKDIR /opt @@ -17,6 +16,8 @@ RUN apk --no-cache add bash apache-ant sqlite curl && \ apk --no-cache del apache-ant && \ rm -rf shibboleth-identity-provider* install.properties +RUN chown -R jetty:jetty /opt/shibboleth-idp + #RUN mkdir -p persistent-id && sqlite3 persistent-id/shibboleth.db < /tmp/shibboleth.db.ddl && rm -f /tmp/shibboleth.db.ddl |