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