#!/bin/bash IMAGE_NAME=weather-frontend IMAGE_TAG=lates echo "🔧 Building Docker image: $IMAGE_NAME:$IMAGE_TAG" docker build -t $IMAGE_NAME:$IMAGE_TAG . docker build -t weather-api:latest -f Dockerfile.api . echo "✅ Build complete."