Fix: Update Sonar needed parameters
[oam/tr069-adapter.git] / mapper / Dockerfile
1 # ============LICENSE_START========================================================================\r
2 # ONAP : tr-069-adapter\r
3 # =================================================================================================\r
4 # Copyright (C) 2020 CommScope Inc Intellectual Property.\r
5 # =================================================================================================\r
6 # This tr-069-adapter software file is distributed by CommScope Inc\r
7 # under the Apache License, Version 2.0 (the "License");\r
8 # you may not use this file except in compliance with the License.\r
9 # You may obtain a copy of the License at\r
10 #\r
11 # http://www.apache.org/licenses/LICENSE-2.0\r
12 #\r
13 # This file is distributed on an "AS IS" BASIS,\r
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
15 # See the License for the specific language governing permissions and\r
16 # limitations under the License.\r
17 # ===============LICENSE_END=======================================================================\r
18 \r
19 FROM openjdk:8-alpine\r
20 \r
21 ARG JAR\r
22 \r
23 ENV SBI_REST_HOST=tr069adapter-acs\r
24 ENV SBI_REST_PORT=9977\r
25 ENV CONFIG_DB_REST_HOST=tr069adapter-acs-initialpnpdb\r
26 ENV CONFIG_DB_REST_PORT=9000\r
27 ENV MAPPER_REST_PORT=9999\r
28 ENV REQUEST_TIMEOUT=300\r
29 ENV preConfigureOnPNP=true\r
30 ENV ALARM_MO_REGEX=(.)*.FaultMgmt.ExpeditedEvent.(.)*\r
31 ENV NBI_REST_HOST=tr069adapter-netconf-server\r
32 ENV NBI_REST_PORT=8181\r
33 ENV VES_REST_HOST=tr069adapter-ves-notifier\r
34 ENV VES_REST_PORT=8383\r
35 ENV netConfServerPort=17830\r
36 ENV netConfServerIP=localhost\r
37 ENV DB_SERVICE=tr069adapter-mariadb\r
38 ENV DB_NAME=dmsdb\r
39 ENV DB_USERNAME=root\r
40 ENV DB_PASSWORD=root\r
41 ENV VENDOR_NAME=CS\r
42 \r
43 WORKDIR /opt/CSAdapter/\r
44 \r
45 ADD target/${JAR} ./lib/mapper.jar\r
46 ADD ./mapper-schema ./mapper-schema\r
47 ADD ./error-code-mapping.json ./error-code-mapping.json\r
48 \r
49 \r
50 ENTRYPOINT ["java", "-jar", "./lib/mapper.jar"]\r