diff options
author | jhh <jorge.hernandez-herrero@att.com> | 2019-04-26 12:17:40 -0500 |
---|---|---|
committer | jhh <jorge.hernandez-herrero@att.com> | 2019-04-26 12:17:40 -0500 |
commit | b5df17d39e93d91ed3f228b077ada296986ff4f6 (patch) | |
tree | b2611f3790372f270a0482e42fffd2fac88929ff /docker_build.sh | |
parent | fa324fe235bbba668adeb147ffca27a4124b5af9 (diff) |
New BUILD_VERSION needed as fixed in parent image
BUILD_VERSION could not be used in ENV variable
as it is cooked in the base image itself. Need to
create a new one to reflect the drools build to
get by.
Change-Id: Ide67a181e5959c5e0d087345db86baf0cc8169b6
Issue-ID: INT-998
Signed-off-by: jhh <jorge.hernandez-herrero@att.com>
Diffstat (limited to 'docker_build.sh')
-rw-r--r-- | docker_build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker_build.sh b/docker_build.sh index 7100d6c35..2f11b0ba4 100644 --- a/docker_build.sh +++ b/docker_build.sh @@ -25,7 +25,7 @@ DOCKER_REPOSITORY=nexus3.onap.org:10003 MVN_VERSION=$(cat packages/docker/target/version) MVN_MAJMIN_VERSION=$(cut -f 1,2 -d . packages/docker/target/version) TIMESTAMP=$(date -u +%Y%m%dT%H%M%S) -BUILD_ARGS="--build-arg BUILD_VERSION=${MVN_VERSION}" +BUILD_ARGS="--build-arg BUILD_VERSION_ENGINE=${MVN_VERSION}" IMAGE=policy-pe if [ $HTTP_PROXY ]; then |