diff options
author | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2018-10-05 11:33:50 -0700 |
---|---|---|
committer | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2018-10-05 11:33:57 -0700 |
commit | 513d6baa67fe8ba8b192132f7efea1467df660ad (patch) | |
tree | 241406af50c4fa88b856f97b131240d26ee65760 /sms-service/bin/build_sms_image.sh | |
parent | b3254568d65e53c564a846a666fa6af912c9b474 (diff) |
Add preload cmdline tool to docker container
Add the preload tool developed in patch 69786 to
sms docker container. It will be used from there
in the kubernetes configuration.
Issue-ID: AAF-532
Change-Id: I7ca1d037514da0d56a6c47d6e0c6b845d2fd9a5e
Signed-off-by: Kiran Kamineni <kiran.k.kamineni@intel.com>
Diffstat (limited to 'sms-service/bin/build_sms_image.sh')
-rwxr-xr-x | sms-service/bin/build_sms_image.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sms-service/bin/build_sms_image.sh b/sms-service/bin/build_sms_image.sh index 10b5418..f5beb4d 100755 --- a/sms-service/bin/build_sms_image.sh +++ b/sms-service/bin/build_sms_image.sh @@ -25,7 +25,11 @@ function generate_binary { pushd ../src/sms make build popd + pushd ../src/preload + make build + popd cp ../target/sms . + cp ../target/preload . } function copy_certificates { @@ -35,7 +39,7 @@ function copy_certificates { } function cleanup { - rm sms + rm sms preload rm aaf-sms.pub rm aaf-sms.pr rm aaf_root_ca.cer |