Updating files with root ca certificate
[aaf/sms.git] / sms-service / bin / smsdockerfile
1 FROM alpine:3.7
2
3 LABEL name="aaf-sms"
4 LABEL version=2.0.0
5 LABEL maintainer="vamshi krishna <vn00480215@techmahindra.com>"
6
7 EXPOSE 10443
8
9 RUN mkdir -p /sms/auth
10 ADD aaf_root_ca.cer /sms/cert/aaf_root_ca.cer
11 ADD aaf-sms.api.simpledemo.onap.org.pem /sms/cert/aaf-sms.api.simpledemo.onap.org.pem
12 ADD aaf-sms.api.simpledemo.onap.org.pr /sms/cert/aaf-sms.api.simpledemo.onap.org.pr
13 ADD sms /sms/bin/sms
14 RUN chmod +x /sms/bin/sms
15
16 WORKDIR /sms
17 ENTRYPOINT ["/sms/bin/sms"]