Files
Maison/arti-api/build.sh
2026-02-10 12:12:11 +01:00

22 lines
457 B
Bash
Executable File

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