blob: f3bd6bc9bee3c04727908855cd88fe683e286e23 [file] [log] [blame]
Instrumental9ec28952018-07-12 11:14:10 -05001FROM rmannfv/aaf-base:xenial
2MAINTAINER 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
Instrumental9ec28952018-07-12 11:14:10 -050011COPY public /opt/app/aaf_config/public
12COPY logs /opt/app/aaf_config/logs
Instrumental32cdd552018-07-19 13:29:32 -050013COPY bin/service.sh /opt/app/aaf_config/bin/agent.sh
Instrumental9ec28952018-07-12 11:14:10 -050014
15ENTRYPOINT ["/bin/bash","/opt/app/aaf_config/bin/agent.sh"]
16CMD []
17