mirror of
				https://github.com/dani-garcia/vaultwarden.git
				synced 2025-10-31 13:51:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			262 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			262 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/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}/${db}/Dockerfile${os_suffix} \
 | |
|            .
 | |
| done
 |