blob: 45c8fbf18c47264a8f5530a30d3d8437fc57be43 [file] [log] [blame]
#!/bin/bash
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
if [[ "$#" -gt 0 ]]
then
DOCKER_TAG=$1
else
DOCKER_TAG="pinot:latest"
echo "Not specified a Docker Tag, using default tag: ${DOCKER_TAG}."
fi
if [[ "$#" -gt 1 ]]
then
PINOT_BRANCH=$2
else
PINOT_BRANCH=master
echo "Not specified a Pinot branch to build, using default branch: ${PINOT_BRANCH}."
fi
if [[ "$#" -gt 2 ]]
then
PINOT_GIT_URL=$3
else
PINOT_GIT_URL="https://github.com/apache/pinot.git"
fi
if [[ "$#" -gt 3 ]]
then
KAFKA_VERSION=$4
else
KAFKA_VERSION=2.0
fi
if [[ "$#" -gt 4 ]]
then
JAVA_VERSION=$5
else
JAVA_VERSION=11
fi
echo "Trying to build Pinot docker image from Git URL: [ ${PINOT_GIT_URL} ] on branch: [ ${PINOT_BRANCH} ] and tag it as: [ ${DOCKER_TAG} ]. Kafka Dependencies: [ ${KAFKA_VERSION} ]. Java Version: [ ${JAVA_VERSION} ]."
docker build --no-cache -t ${DOCKER_TAG} --build-arg PINOT_BRANCH=${PINOT_BRANCH} --build-arg PINOT_GIT_URL=${PINOT_GIT_URL} --build-arg KAFKA_VERSION=${KAFKA_VERSION} --build-arg JAVA_VERSION=${JAVA_VERSION} -f Dockerfile .