Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
release 2.0.4
sporth committed Oct 22, 2024
1 parent 751d9e0 commit 840425e
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions Dockerfile
@@ -10,10 +10,11 @@ COPY bootstrapfiles/shibui-${version}.war.sha256sum .
# && yum clean all \
# && rm -rf /var/cache/yum
RUN yum -qy install --setopt=tsflags=nodocs epel-release \
&& yum install -qy curl supervisor
&& yum install -qy curl supervisor wget

RUN curl https://github.internet2.edu/TIER/shib-idp-ui/releases/download/v${version}/shibui-${version}.war \
&& sha256sum -c shibui-${version}.war.sha256sum && mv shibui-${version}.war shibui.war
RUN mkdir -p /opt/shibui
RUN wget https://github.internet2.edu/TIER/shib-idp-ui/releases/download/v${version}/shibui-${version}.war
RUN sha256sum -c shibui-${version}.war.sha256sum && mv shibui-${version}.war /opt/shibui/shibui.war

# beacon env
ENV TIERVERSION=MCM_2.0.4
@@ -30,9 +31,6 @@ RUN curl -O -L $CORRETTO_URL_PERM \
&& rm -r corretto-signing-key.pub $CORRETTO_RPM
ENV JAVA_HOME=/usr/lib/jvm/java-1.17.0-amazon-corretto

RUN mkdir -p /opt/shibui
COPY shibui.war /opt/shibui/

COPY containerfiles/supervisord.conf /etc/supervisor/supervisord.conf
COPY containerfiles/users.txt /opt/shibui

0 comments on commit 840425e

Please sign in to comment.