diff options
Diffstat (limited to 'auth/docker/Dockerfile')
-rw-r--r-- | auth/docker/Dockerfile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/auth/docker/Dockerfile b/auth/docker/Dockerfile new file mode 100644 index 00000000..7dee2eb7 --- /dev/null +++ b/auth/docker/Dockerfile @@ -0,0 +1,25 @@ +FROM openjdk:8 +MAINTAINER AAF Team, AT&T 2018 +ENV VERSION=${AAF_VERSION} + +LABEL description="aaf ${AAF_COMPONENT}" +LABEL version=${AAF_VERSION} + + +COPY lib /opt/app/aaf/${AAF_COMPONENT}/lib +COPY theme /opt/app/aaf/${AAF_COMPONENT}/theme +COPY bin /opt/app/aaf/${AAF_COMPONENT}/bin + +CMD ["bash","/opt/app/aaf/${AAF_COMPONENT}/bin/${AAF_COMPONENT}"] + +# For Debugging installation +# CMD ["bash"] +# Java Debugging VM Args +# "-Xdebug",\ +# "-Xnoagent",\ +# "-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000",\ + +# TLS Debugging VM Args +# "-Djavax.net.debug","ssl", \ + + |