blob: f464997665a394f5b59fbd3da7fc392c489bb566 (
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
44
45
46
|
#!/bin/bash
# compile_src() - Function that compiles the java source code thru maven
function compile_src {
local src_folder=$1
pushd $src_folder
if [ -f pom.xml ]; then
install_maven
mvn clean install -U -DskipTests=true -Dmaven.test.skip=true -Dmaven.javadoc.skip=true -Dadditionalparam=-Xdoclint:none
fi
popd
}
# build_docker_image() - Build Docker container image from source code
function build_docker_image {
local src_folder=$1
local profile=$2
install_maven
install_docker
pushd $src_folder
# Cleanup external repo
sed -i 's|${docker.push.registry}/||g' pom.xml
local mvn_docker="mvn clean package docker:build"
if [ $profile ]; then
mvn_docker+=" -P $profile"
fi
if [ $http_proxy ]; then
if ! grep -ql "docker.buildArg.http_proxy" pom.xml ; then
mvn_docker+=" -Ddocker.buildArg.http_proxy=$http_proxy"
fi
if ! grep -ql "docker.buildArg.HTTP_PROXY" pom.xml ; then
mvn_docker+=" -Ddocker.buildArg.HTTP_PROXY=$http_proxy"
fi
fi
if [ $https_proxy ]; then
if ! grep -ql "docker.buildArg.https_proxy" pom.xml ; then
mvn_docker+=" -Ddocker.buildArg.https_proxy=$https_proxy"
fi
if ! grep -ql "docker.buildArg.HTTPS_PROXY" pom.xml ; then
mvn_docker+=" -Ddocker.buildArg.HTTPS_PROXY=$https_proxy"
fi
fi
eval $mvn_docker
popd
}
|