git-subtree-dir: third_party/apereo-cas/overlay git-subtree-split: 2881b2c0d8dcaae25582c4607f2dbadfb5a50953
		
			
				
	
	
		
			10 lines
		
	
	
		
			No EOL
		
	
	
		
			360 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			No EOL
		
	
	
		
			360 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/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" |