diff options
author | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2018-03-21 09:13:26 -0700 |
---|---|---|
committer | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2018-04-13 17:22:02 -0700 |
commit | ce74c5ac55fdb51582268046632943e510a19f00 (patch) | |
tree | a0beb2382abe73f4db19c58aaa625f818a010800 /sms-service/bin | |
parent | 2dd9f3de5b33d6acbcb641566b9e7d3ccbe91d8c (diff) |
Adding secure init code for backend
Changes to allow quorum client to SMS communication
Introducing a registration api for quorum clients to get
their shard piece in PGP encrypted form from SMS
Tested with 3 quorum clients. This is now ready for review.
Issue-ID: AAF-168
Change-Id: I7a6ade792c1e5ebcf00cbc8c4a1f1942c006e7c7
Signed-off-by: Kiran Kamineni <kiran.k.kamineni@intel.com>
Diffstat (limited to 'sms-service/bin')
-rw-r--r-- | sms-service/bin/quorumdockerfile | 2 | ||||
-rw-r--r-- | sms-service/bin/smsdockerfile | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/sms-service/bin/quorumdockerfile b/sms-service/bin/quorumdockerfile index 08a6606..08676dc 100644 --- a/sms-service/bin/quorumdockerfile +++ b/sms-service/bin/quorumdockerfile @@ -4,6 +4,8 @@ LABEL name="aaf-sms-quorumclient" LABEL version=1.0.0 LABEL maintainer="Girish Havaldar <hg0071052@techmahindra.com>" +RUN mkdir -p /quorumclient/auth ADD quorumclient /quorumclient/bin/quorumclient RUN chmod +x /quorumclient/bin/quorumclient + ENTRYPOINT ["/quorumclient/bin/quorumclient"] diff --git a/sms-service/bin/smsdockerfile b/sms-service/bin/smsdockerfile index be2777c..d130449 100644 --- a/sms-service/bin/smsdockerfile +++ b/sms-service/bin/smsdockerfile @@ -6,7 +6,7 @@ LABEL maintainer="vamshi krishna <vn00480215@techmahindra.com>" EXPOSE 10443 -RUN mkdir /sms +RUN mkdir -p /sms/auth ADD sms /sms/bin/sms RUN chmod +x /sms/bin/sms |