Skip to content

Commit

Permalink
4.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mchyzer committed Jun 27, 2024
1 parent dbea557 commit 4fbc427
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ LABEL author="tier-packaging@internet2.edu <tier-packaging@internet2.edu>" \

ARG GROUPER_CONTAINER_VERSION

ENV GROUPER_VERSION=4.13.0 \
GROUPER_CONTAINER_VERSION=4.13.1 \
ENV GROUPER_VERSION=4.14.0 \
GROUPER_CONTAINER_VERSION=4.14.0 \
JAVA_HOME=/usr/lib/jvm/java-17-amazon-corretto \
PATH=$PATH:$JAVA_HOME/bin \
GROUPER_HOME=/opt/grouper/grouperWebapp/WEB-INF
Expand Down
10 changes: 10 additions & 0 deletions container_files/docker-build-bin/containerDockerfileInstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,16 @@ returnCode=$?
echo "grouperDockerfile; INFO: (containerDockerfileInstall.sh) mv /opt/tier-support/log4j_fix/webinfLib/* /opt/grouper/grouperWebapp/WEB-INF/lib/, result: $returnCode"
if [ $returnCode != 0 ]; then exit $returnCode; fi

mkdir /opt/grouper/grouperWebapp/WEB-INF/libPlaywright
returnCode=$?
echo "grouperDockerfile; INFO: (containerDockerfileInstall.sh) mkdir /opt/grouper/grouperWebapp/WEB-INF/libPlaywright, result: $returnCode"
if [ $returnCode != 0 ]; then exit $returnCode; fi

mv /opt/grouper/grouperWebapp/WEB-INF/lib/playwright* /opt/grouper/grouperWebapp/WEB-INF/libPlaywright
returnCode=$?
echo "grouperDockerfile; INFO: (containerDockerfileInstall.sh) mv /opt/grouper/grouperWebapp/WEB-INF/lib/playwright* /opt/grouper/grouperWebapp/WEB-INF/libPlaywright, result: $returnCode"
if [ $returnCode != 0 ]; then exit $returnCode; fi

touch /opt/grouper/grouperEnv.sh
returnCode=$?
echo "grouperDockerfile; INFO: (containerDockerfileInstall.sh) touch /opt/grouper/grouperEnv.sh, result: $returnCode"
Expand Down

0 comments on commit 4fbc427

Please sign in to comment.