Updating with binary compile in the bash script
[aaf/sms.git] / sms-service / bin / Dockerfile
1 FROM alpine:3.7
2 MAINTAINER aaf-sms
3
4 LABEL name="aaf-sms"
5 LABEL version=1.0.0
6 LABEL maintainer="vamshi krishna <vn00480215@techmahindra.com>"
7
8 EXPOSE 10443
9
10 RUN mkdir -p /sms/auth
11 ADD sms /sms/bin/sms
12 RUN chmod +x /sms/bin/sms
13
14 ENTRYPOINT ["/sms/bin/sms"]