mirror of
				https://github.com/dani-garcia/vaultwarden.git
				synced 2025-10-27 16:30:02 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			262 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 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
 |