diff options
author | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2018-04-04 14:03:56 -0700 |
---|---|---|
committer | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2018-04-04 15:36:49 -0700 |
commit | 468de91f0284758fcab69b7e022b6a8ce748c1af (patch) | |
tree | 5f339ce75c4cf7f07f40b31118f4887b79c2d493 /sms-service/bin/smsdockerfile | |
parent | 25865489e4ea236afc699f8b6c9c62fd92145af1 (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-service/bin/smsdockerfile')
-rw-r--r-- | sms-service/bin/smsdockerfile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sms-service/bin/smsdockerfile b/sms-service/bin/smsdockerfile new file mode 100644 index 0000000..be2777c --- /dev/null +++ b/sms-service/bin/smsdockerfile @@ -0,0 +1,13 @@ +FROM alpine:3.7 + +LABEL name="aaf-sms" +LABEL version=1.0.0 +LABEL maintainer="vamshi krishna <vn00480215@techmahindra.com>" + +EXPOSE 10443 + +RUN mkdir /sms +ADD sms /sms/bin/sms +RUN chmod +x /sms/bin/sms + +ENTRYPOINT ["/sms/bin/sms"] |