| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 | #!/bin/bash# Copyright The OpenTelemetry Authors# SPDX-License-Identifier: Apache-2.0set -o errexitset -o nounsetset -o pipefailHelp(){   # Display Help   echo "Add description of the script functions here."   echo   echo "Syntax: scriptTemplate [-b|o|g|j]"   echo "options:"   echo "b     Base image"   echo "o     OpenTelemetry-cpp git tag"   echo "h     Print Help."   echo "g     gRPC git tag"   echo "j     Parallel jobs"   echo   echo "how to use:"   echo   echo "docker create -ti --name otel otel-cpp-<base_image> bash"   echo "docker cp otel:/ ./"   echo "docker rm -f otel"   echo   echo "or:"   echo   echo "COPY --from=otel-cpp-<base_image> /usr"}base_image=${base_image:="alpine"}grpc_git_tag=${grpc_git_tag:="v1.43.2"}otel_git_tag=${otel_git_tag:="v1.3.0"}cores=${cores:=1}while getopts ":h:b:o:g:j:" option; do   case $option in    h) # display Help         Help         exit;;    b) # base image        base_image=$OPTARG        ;;    o) # OpenTelemetry-cpp git tag        otel_git_tag=$OPTARG        ;;    g) # gRPC git tag        grpc_git_tag=$OPTARG        ;;    j) # number of cores        cores=$OPTARG        ;;    \?)        Help        exit;;   esacdonedocker build -t base-${base_image}-dev -f Dockerfile.${base_image}.base .pushd grpc/docker build --build-arg BASE_IMAGE=base-${base_image}-dev \    --build-arg GRPC_GIT_TAG=${grpc_git_tag} \    --build-arg CORES=${cores} \    -t grpc-${base_image} -f Dockerfile .popddocker build --build-arg BASE_IMAGE=${base_image} \    --build-arg CORES=${cores} \    --build-arg OTEL_GIT_TAG=${otel_git_tag} \    -t otel-cpp-${base_image} -f Dockerfile .
 |