#!/bin/bash # Build script for Arti-API set -e echo "Building Arti-API container..." # Build the Docker image docker build -t hexah/arti-api:1.0.0 . echo "Build completed successfully!" echo "" echo "To run the container:" echo " docker-compose up -d" echo "" echo "To deploy to Kubernetes:" echo " kubectl apply -f kubernetes.yaml" echo "" echo "API will be available at:" echo " http://localhost:8000" echo " API docs: http://localhost:8000/docs"