From 71037c39a37d3549dcfe31926832a657744fbe05 Mon Sep 17 00:00:00 2001 From: Instrumental Date: Mon, 26 Mar 2018 13:51:48 -0700 Subject: AT&T 2.0.19 Code drop, stage 3 Issue-ID: AAF-197 Change-Id: I8b02cb073ccba318ccaf6ea0276446bdce88fb82 Signed-off-by: Instrumental --- auth/docker/Dockerfile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 auth/docker/Dockerfile (limited to 'auth/docker/Dockerfile') 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", \ + + -- cgit 1.2.3-korg