18 lines
275 B
Bash
Executable File
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!"
|