mirror of
				https://github.com/restic/restic.git
				synced 2025-10-31 13:21:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			210 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			210 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| set -e
 | |
| 
 | |
| export DOCKER_BUILDKIT=${DOCKER_BUILDKIT-1}
 | |
| 
 | |
| echo "Build docker image restic/restic:latest"
 | |
| docker build \
 | |
|   --rm \
 | |
|   --pull \
 | |
|   --file docker/Dockerfile \
 | |
|   --tag restic/restic:latest \
 | |
|   .
 | 
