Adding cert files to support https
[aaf/sms.git] / sms-service / bin / build_sms_image.sh
index a89e64e..cd3663f 100755 (executable)
@@ -27,8 +27,15 @@ function generate_binary {
     cp ../target/sms .
 }
 
-function remove_binary {
+function copy_certificates {
+    cp ../src/sms/auth/aaf-sms.api.simpledemo.onap.org.pem .
+    cp ../src/sms/auth/aaf-sms.api.simpledemo.onap.org.pr .
+}
+
+function cleanup {
     rm sms
+    rm aaf-sms.api.simpledemo.onap.org.pem
+    rm af-sms.api.simpledemo.onap.org.pr
 }
 
 function build_image {
@@ -51,6 +58,7 @@ function push_image {
 }
 
 generate_binary
+copy_certificates
 build_image
 push_image
-remove_binary
\ No newline at end of file
+cleanup
\ No newline at end of file