10 lines
		
	
	
	
		
			217 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			217 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
TAG=cccb-tanks-cs
 | 
						|
 | 
						|
build:
 | 
						|
	podman build tanks-backend --tag=$(TAG)-backend
 | 
						|
	podman build tank-frontend --tag=$(TAG)-frontend
 | 
						|
	podman build . --tag=$(TAG)
 | 
						|
 | 
						|
run: build
 | 
						|
	podman run -i -p 80:3000 localhost/$(TAG):latest
 | 
						|
 |