blob: 5f36e546ce8765c3b843c800ecaaa324cf63bde1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
FROM jetty:9-alpine
EXPOSE 80 443
MAINTAINER Jesper B. Rosenkilde <jbr@nordu.net>
ENV IDP_VERSION 3.3.0
COPY install.properties /opt/
COPY shibboleth-identity-provider-${IDP_VERSION}.tar.gz.sha256 /opt/
COPY shibboleth.db.ddl /tmp/
WORKDIR /opt
RUN apk --no-cache add bash apache-ant sqlite curl && \
curl -O https://shibboleth.net/downloads/identity-provider/${IDP_VERSION}/shibboleth-identity-provider-${IDP_VERSION}.tar.gz && \
sha256sum -c shibboleth-identity-provider-$IDP_VERSION.tar.gz.sha256 && \
tar xf shibboleth-identity-provider-$IDP_VERSION.tar.gz && \
mv shibboleth-identity-provider-$IDP_VERSION shibboleth-identity-provider && \
./shibboleth-identity-provider/bin/install.sh -propertyfile install.properties && \
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
COPY jetty_base $JETTY_BASE
WORKDIR $JETTY_BASE
|