blob: bc1eafca59d5b1a9981ee1b4ae65d2da6eb83085 [file] [log] [blame]
Manjunath Ranganathaiah69868d82018-08-24 12:44:52 -07001FROM nexus3.onap.org:10001/onap/aaf/aaf-base-xenial:latest
Instrumental9ec28952018-07-12 11:14:10 -05002MAINTAINER AAF Team, AT&T 2018
3ENV VERSION=${AAF_VERSION}
4
Instrumental32cdd552018-07-19 13:29:32 -05005LABEL description="aaf_config"
Instrumental9ec28952018-07-12 11:14:10 -05006LABEL version=${AAF_VERSION}
7
8COPY data/sample.identities.dat /opt/app/aaf_config/data/
9COPY etc /opt/app/aaf_config/etc
Instrumental4ad47632018-07-13 15:49:26 -050010COPY local /opt/app/aaf_config/local
Instrumentalbc299c02018-09-25 06:42:31 -050011COPY cert /opt/app/aaf_config/cert
Instrumental9ec28952018-07-12 11:14:10 -050012COPY public /opt/app/aaf_config/public
Instrumentalbc299c02018-09-25 06:42:31 -050013COPY CA /opt/app/aaf_config/CA
Instrumental9ec28952018-07-12 11:14:10 -050014COPY logs /opt/app/aaf_config/logs
Instrumental32cdd552018-07-19 13:29:32 -050015COPY bin/service.sh /opt/app/aaf_config/bin/agent.sh
Instrumental9fe11532018-10-23 17:40:47 -050016COPY bin/aaf-auth-cmd-${AAF_VERSION}-full.jar /opt/app/aaf_config/bin/
Instrumental9ec28952018-07-12 11:14:10 -050017
18ENTRYPOINT ["/bin/bash","/opt/app/aaf_config/bin/agent.sh"]
19CMD []
20