changed to unmaintained
[aaf/authz.git] / auth / docker / Dockerfile
1 FROM openjdk:8
2 MAINTAINER AAF Team, AT&T 2018
3 ENV VERSION=${AAF_VERSION}
4
5 LABEL description="aaf ${AAF_COMPONENT}"
6 LABEL version=${AAF_VERSION}
7
8
9 #RUN apt-get update
10 #RUN apt-get install -y softhsm2
11 #RUN apt-get install -y libsofthsm2
12 #RUN apt-get install -y opensc
13
14 COPY lib /opt/app/aaf/${AAF_COMPONENT}/lib
15 COPY theme /opt/app/aaf/${AAF_COMPONENT}/theme
16 COPY bin /opt/app/aaf/${AAF_COMPONENT}/bin
17
18 #CMD ["/bin/bash","/opt/app/aaf/${AAF_COMPONENT}/bin/${AAF_COMPONENT}"]
19
20 # For Debugging installation
21 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}"]
22 # Java Debugging VM Args
23 #     "-Xdebug",\
24 #     "-Xnoagent",\
25 #     "-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000",\
26
27 # TLS Debugging VM Args
28 #     "-Djavax.net.debug","ssl", \
29