9 lines
		
	
	
		
			217 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			217 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| echo "Building Docker image for backend"
 | |
| docker build -t battleship-backend ./backend
 | |
| 
 | |
| echo "Building Docker image for frontend"
 | |
| docker build -t battleship-frontend ./frontend
 | |
| 
 | |
| echo "Docker images built."
 |