aboutsummaryrefslogtreecommitdiffstats
path: root/dox-sequence-diagram-ui/src/main/webapp
diff options
context:
space:
mode:
authoravigaffa <avi.gaffa@amdocs.com>2019-06-05 11:54:26 +0300
committeravigaffa <avi.gaffa@amdocs.com>2019-06-05 11:54:26 +0300
commit26b7bdc2fe4901094a33781d76eb9b700bbbe9ba (patch)
tree8b2fe6eb2974959633b8f0085de6c525cb7e96be /dox-sequence-diagram-ui/src/main/webapp
parent18088ab28bb9c780194b8add1f4595d1f69d2eae (diff)
Add lombok support to simple classes
Change-Id: I3d8a8e02d8c4b98bfda6367bb34b104edb930707 Issue-ID: SDC-2354 Signed-off-by: avigaffa <avi.gaffa@amdocs.com>
Diffstat (limited to 'dox-sequence-diagram-ui/src/main/webapp')
0 files changed, 0 insertions, 0 deletions
d-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
FROM docker.io/openjdk:11-jre-slim
COPY --from=python:3.6 / /

ARG VERSION=${version}

ADD target/libs /app/libs
ADD config /opt/db/config
ADD ./templates /app/templates
ADD ./src/main/resources/application.properties /app/application.properties
ADD target/vesclient-${VERSION}.jar /app/vesclient.jar
CMD apk update
CMD apk add ca-certificates
RUN python -m pip install -r /opt/db/config/requirements.txt
ADD certificates  /usr/local/share/ca-certificates/
RUN update-ca-certificates
CMD python /opt/db/config/mongo_db_schema_creation.py \
    && if [ -f /app/store/trust.pass ]; then cp /app/store/trust.pass /app/store/truststore.pass; fi \
    && java -Dspring.config.location=file:/app/application.properties  -cp /app/libs/*:/app/vesclient.jar org.onap.integration.simulators.nfsimulator.vesclient.Main \