Squashed 'third_party/apereo-cas/overlay/' content from commit 2881b2c0d

git-subtree-dir: third_party/apereo-cas/overlay
git-subtree-split: 2881b2c0d8dcaae25582c4607f2dbadfb5a50953
This commit is contained in:
Luke Granger-Brown 2020-07-05 13:05:18 +00:00
commit 2e185f50c3
32 changed files with 1658 additions and 0 deletions

10
docker-build.sh Executable file
View file

@ -0,0 +1,10 @@
#!/bin/bash
image_tag=(`cat gradle.properties | grep "cas.version" | cut -d= -f2`)
echo "Building CAS docker image tagged as [v$image_tag]"
# read -p "Press [Enter] to continue..." any_key;
docker build --tag="apereo/cas:v$image_tag" . \
&& echo "Built CAS image successfully tagged as apereo/cas:v$image_tag" \
&& docker images "apereo/cas:v$image_tag"