You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							14 lines
						
					
					
						
							256 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							14 lines
						
					
					
						
							256 B
						
					
					
				| #!/bin/bash | |
|  | |
| echo ">>> Building images..." | |
| 
 | |
| source ./hooks/arches.sh | |
| 
 | |
| set -ex | |
| 
 | |
| for arch in "${arches[@]}"; do | |
|     docker build \ | |
|            -t "${DOCKER_REPO}:${DOCKER_TAG}-${arch}" \ | |
|            -f docker/${arch}/Dockerfile${os_suffix} \ | |
|            . | |
| done
 | |
| 
 |