mirror of
https://github.com/dromara/hertzbeat.git
synced 2026-09-23 16:12:14 +00:00
add apache license for java files and some other files(checking later) add apache license for other files Co-authored-by: za-jiangliwen <liwen.jiang@zatech.com>
37 lines
1.2 KiB
Bash
Executable File
37 lines
1.2 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# 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.
|
|
|
|
VERSION="$1"
|
|
|
|
if [ ! -n "$VERSION" ]; then
|
|
echo "MUST INPUT THE BUILD VERSION"
|
|
exit 1
|
|
fi
|
|
|
|
cd `dirname $0`
|
|
# 当前脚本目录
|
|
CURRENT_DIR=`pwd`
|
|
|
|
cd ../../../manager/target
|
|
# 编译上下文目录
|
|
CONTEXT_DIR=`pwd`
|
|
|
|
echo "docker build -t tancloud/hertzbeat:$VERSION -f $CURRENT_DIR/Dockerfile $CONTEXT_DIR"
|
|
|
|
docker build -t tancloud/hertzbeat:"$VERSION" -f $CURRENT_DIR/Dockerfile $CONTEXT_DIR
|