9 lines
223 B
Bash
9 lines
223 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."
|