summaryrefslogtreecommitdiffstats
path: root/sms-service/bin/smsdockerfile
blob: 629fcd5cff3943142b959dd38078101423b24ccd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM alpine:3.7

LABEL name="aaf-sms"
LABEL version=2.0.0
LABEL maintainer="vamshi krishna <vn00480215@techmahindra.com>"

EXPOSE 10443

RUN mkdir -p /sms/auth
ADD sms /sms/bin/sms
RUN chmod +x /sms/bin/sms

ENTRYPOINT ["/sms/bin/sms"]