zkt25/z2/prepare-app.sh
2025-04-03 11:57:59 +02:00

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."