diff options
author | 2018-08-23 15:30:53 -0700 | |
---|---|---|
committer | 2018-08-27 15:06:48 -0700 | |
commit | b4133b73e86c4f8cbd4284dde9970c2e8216baa4 (patch) | |
tree | 19fe405775b5ab063639127044fc8eb0150dff56 /bin/build_images.sh | |
parent | cacc77da25e42ccae6344dbffd5f7b28d5b6b642 (diff) |
Add build script for initabrmd container
Add script to build and push the image to
nexus repo. Invoke the script from top level
build script.
Change-Id: I644428d2da3bbc4688a3a45d34b8b7e9148314b0
Issue-ID: AAF-443
Signed-off-by: Manjunath Ranganathaiah <manjunath.ranganathaiah@intel.com>
Diffstat (limited to 'bin/build_images.sh')
-rwxr-xr-x | bin/build_images.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bin/build_images.sh b/bin/build_images.sh index 49fe990..43996ed 100755 --- a/bin/build_images.sh +++ b/bin/build_images.sh @@ -1,6 +1,14 @@ #!/bin/bash set -e + cd base +chmod 755 build_base_images.sh ./build_base_images.sh + cd ../distcenter +chmod 755 build_distcenter_image.sh ./build_distcenter_image.sh + +cd ../abrmdcontainer +chmod 755 build_abrmd_image.sh +./build_abrmd_image.sh |