zkt25/assignment2/prepare-app.sh

12 lines
242 B
Bash
Executable File

#!/bin/bash
IMAGE_NAME=weather-frontend
IMAGE_TAG=latest
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."