mirror of
https://github.com/valitydev/clickhouse-sink-connector.git
synced 2024-11-06 10:35:21 +00:00
delete duplicates
This commit is contained in:
parent
a38506654b
commit
0a57412780
@ -1,5 +0,0 @@
|
||||
FROM quay.io/strimzi/kafka:0.21.1-kafka-2.7.0
|
||||
USER root:root
|
||||
COPY deploy/libs /opt/kafka/libs/
|
||||
COPY target/*.jar /opt/share/kafka/plugins/
|
||||
USER 1001
|
@ -1,25 +0,0 @@
|
||||
#!/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}/..")"
|
||||
|
||||
# Externally configurable build-dependent options
|
||||
TAG="${TAG:-latest}"
|
||||
DOCKER_IMAGE="local/altinity/clickhouse-kafka-sink-connector-strimzi:${TAG}"
|
||||
|
||||
# Externally configurable build-dependent options
|
||||
DOCKERFILE_DIR="${SRC_ROOT}/docker"
|
||||
DOCKERFILE="${DOCKERFILE_DIR}/Dockerfile_strimzi"
|
||||
|
||||
DOCKER_CMD="docker build -t ${DOCKER_IMAGE} -f ${DOCKERFILE} ${SRC_ROOT}"
|
||||
|
||||
if ${DOCKER_CMD}; then
|
||||
echo "ALL DONE"
|
||||
else
|
||||
echo "FAILED"
|
||||
exit 1
|
||||
fi
|
Loading…
Reference in New Issue
Block a user