summaryrefslogtreecommitdiffstats
path: root/sms-quorum/bin/quorumdockerfile
diff options
context:
space:
mode:
authorKiran Kamineni <kiran.k.kamineni@intel.com>2018-04-04 14:03:56 -0700
committerKiran Kamineni <kiran.k.kamineni@intel.com>2018-04-04 15:36:49 -0700
commit468de91f0284758fcab69b7e022b6a8ce748c1af (patch)
tree5f339ce75c4cf7f07f40b31118f4887b79c2d493 /sms-quorum/bin/quorumdockerfile
parent25865489e4ea236afc699f8b6c9c62fd92145af1 (diff)
Changing docker image build to use filename
Changing the docker image build process to use a specified file instead of default Dockerfile Also, fixing the line endings in .sh file to use Unix line endings. Issue-ID: AAF-213 Change-Id: I715a8d86a3bd2433f92d42e216a1f52f56cebf9b Signed-off-by: Kiran Kamineni <kiran.k.kamineni@intel.com>
Diffstat (limited to 'sms-quorum/bin/quorumdockerfile')
-rw-r--r--sms-quorum/bin/quorumdockerfile9
1 files changed, 9 insertions, 0 deletions
diff --git a/sms-quorum/bin/quorumdockerfile b/sms-quorum/bin/quorumdockerfile
new file mode 100644
index 0000000..2e1a191
--- /dev/null
+++ b/sms-quorum/bin/quorumdockerfile
@@ -0,0 +1,9 @@
+FROM alpine:3.7
+
+LABEL name="aaf-sms"
+LABEL version=1.0.0
+LABEL maintainer="Girish Havaldar <hg0071052@techmahindra.com>"
+
+ADD quorumclient /smsquorum/bin/quorumclient
+RUN chmod +x /smsquorum/bin/quorumclient
+ENTRYPOINT ["/smsquorum/bin/quorumclient"]