blob: 50a2a898e9e06364354d9ba9a66aba304e0be831 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#!/bin/bash
BUILD_ARGS="--no-cache"
ORG="onap"
VERSION="1.0.0"
PROJECT="music"
IMAGE="distributed-kv-store"
DOCKER_REPOSITORY="nexus3.onap.org:10003"
IMAGE_NAME="${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/${IMAGE}"
TIMESTAMP=$(date +"%Y%m%dT%H%M%S")
if [ $HTTP_PROXY ]; then
BUILD_ARGS+=" --build-arg HTTP_PROXY=${HTTP_PROXY}"
fi
if [ $HTTPS_PROXY ]; then
BUILD_ARGS+=" --build-arg HTTPS_PROXY=${HTTPS_PROXY}"
fi
function generate_binary {
pushd ../src/dkv
make build
popd
cp ../target/dkv .
}
function build_image {
echo "Start build docker image."
docker build ${BUILD_ARGS} -t ${IMAGE_NAME}:latest .
}
function push_image {
echo "Start push docker image."
docker push ${IMAGE_NAME}:latest
}
function remove_binary {
rm dkv
}
generate_binary
build_image
push_image
remove_binary
|