mirror of
				https://github.com/dani-garcia/vaultwarden.git
				synced 2025-10-31 13:51:14 +00:00 
			
		
		
		
	Add a dot indicting current directory to search by find. find in mac won't work without the dot
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			290 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			290 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| OBJECTS := $(shell find ./ -mindepth 2 -name 'Dockerfile*')
 | |
| 
 | |
| all: $(OBJECTS)
 | |
| 
 | |
| %/Dockerfile: Dockerfile.j2 render_template
 | |
| 	./render_template "$<" "{\"target_file\":\"$@\"}" > "$@"
 | |
| 
 | |
| %/Dockerfile.alpine: Dockerfile.j2 render_template
 | |
| 	./render_template "$<" "{\"target_file\":\"$@\"}" > "$@"
 |