Files
ai/bin/build-all
2026-03-11 18:47:11 -04:00

18 lines
275 B
Bash
Executable File

#!/bin/bash
# Build all container images
set -e
DIR="$(cd "$(dirname "$0")" && pwd)"
echo "Building all container images..."
echo
"$DIR/build" flink "$@"
"$DIR/build" relay "$@"
"$DIR/build" ingestor "$@"
"$DIR/build" web "$@"
echo
echo "All images built successfully!"