mirror of
https://github.com/valitydev/clickhouse-sink-connector.git
synced 2024-11-07 02:55:23 +00:00
11 lines
256 B
Bash
Executable File
11 lines
256 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Production docker image builder
|
|
set -e
|
|
|
|
# Source configuration
|
|
CUR_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
|
|
SRC_ROOT="$(realpath "${CUR_DIR}/..")"
|
|
|
|
{ cd "${SRC_ROOT}"; mvn clean package; } && "${CUR_DIR}"/build.sh
|