65e21d3f6a
* example code for BAEL-3749 * added live test * added live test * improved exception handling in response log filter * propage exception in example code * updated repo with upstream * added example code for BAEL-3293 * updated the example code for BAEL-3749 * updated the example code for BAEL-3749 * updated the example code for BAEL-3749 * updated the example code for BAEL-3749
10 lines
380 B
Bash
Executable File
10 lines
380 B
Bash
Executable File
#!/bin/bash
|
|
|
|
image_tag=(`cat gradle.properties | grep "cas.version" | cut -d= -f2`)
|
|
|
|
echo "Building CAS docker image tagged as [$image_tag]"
|
|
# read -p "Press [Enter] to continue..." any_key;
|
|
|
|
docker build --tag="org.apereo.cas/cas:$image_tag" . \
|
|
&& echo "Built CAS image successfully tagged as org.apereo.cas/cas:$image_tag" \
|
|
&& docker images "org.apereo.cas/cas:$image_tag" |