blob: d744d69c6ff7efc5bcaa8bb681a3945a1eef9cba [file] [log] [blame]
Manjunath Ranganathaiahd4889f42018-06-11 13:07:44 -07001FROM rmannfv/aaf-base:xenial
Instrumental71037c32018-03-26 13:51:48 -07002MAINTAINER AAF Team, AT&T 2018
3ENV VERSION=${AAF_VERSION}
4
5LABEL description="aaf ${AAF_COMPONENT}"
6LABEL version=${AAF_VERSION}
7
Instrumental924b18d2018-04-05 20:17:18 -05008
Instrumental71037c32018-03-26 13:51:48 -07009COPY lib /opt/app/aaf/${AAF_COMPONENT}/lib
10COPY theme /opt/app/aaf/${AAF_COMPONENT}/theme
11COPY bin /opt/app/aaf/${AAF_COMPONENT}/bin
12
Instrumental88aec4e2018-05-18 07:26:59 -050013CMD ["/bin/bash","-c","/opt/app/aaf/${AAF_COMPONENT}/bin/${AAF_COMPONENT}"]
Instrumental71037c32018-03-26 13:51:48 -070014
15# For Debugging installation
Instrumental12f7f462018-04-23 15:43:47 -050016# CMD ["/bin/bash","-c","pwd;cd /opt/app/osaaf;find /opt/app/osaaf -depth;df -k; cat /opt/app/aaf/${AAF_COMPONENT}/bin/${AAF_COMPONENT};cat /etc/hosts;/opt/app/aaf/${AAF_COMPONENT}/bin/${AAF_COMPONENT}"]
Instrumental71037c32018-03-26 13:51:48 -070017# Java Debugging VM Args
18# "-Xdebug",\
19# "-Xnoagent",\
20# "-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000",\
21
22# TLS Debugging VM Args
23# "-Djavax.net.debug","ssl", \
24