zkt25/assignment2/prepare-app.sh
2025-05-11 00:01:27 +02:00

12 lines
241 B
Bash
Executable File

#!/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."