blob: b2c0c30c69e316d16d27b87771d8b26a951c0485 [file] [log] [blame]
PatrikBuhr18fddb82021-09-15 15:43:53 +02001#
2# ============LICENSE_START=======================================================
RehanRaza4916abd2021-09-21 10:20:53 +02003# O-RAN-SC
PatrikBuhr18fddb82021-09-15 15:43:53 +02004# ================================================================================
RehanRaza4916abd2021-09-21 10:20:53 +02005# Copyright (C) 2021 Nordix Foundation. All rights reserved.
PatrikBuhr18fddb82021-09-15 15:43:53 +02006# ================================================================================
7# Licensed under the Apache License, Version 2.0 (the "License");
8# you may not use this file except in compliance with the License.
9# You may obtain a copy of the License at
10#
11# http://www.apache.org/licenses/LICENSE-2.0
12#
13# Unless required by applicable law or agreed to in writing, software
14# distributed under the License is distributed on an "AS IS" BASIS,
15# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16# See the License for the specific language governing permissions and
17# limitations under the License.
18#
19# SPDX-License-Identifier: Apache-2.0
20# ============LICENSE_END=========================================================
21
22
23FROM openjdk:11-jre-slim
24
25EXPOSE 8084 8435
26
27ARG JAR
28
29WORKDIR /opt/app/dmaap-adaptor-service
30RUN mkdir -p /var/log/dmaap-adaptor-service
31RUN mkdir -p /opt/app/dmaap-adaptor-service/etc/cert/
32RUN mkdir -p /var/dmaap-adaptor-service
33RUN chmod -R 777 /var/dmaap-adaptor-service
34
35ADD /config/application.yaml /opt/app/dmaap-adaptor-service/config/application.yaml
36ADD /config/application_configuration.json /opt/app/dmaap-adaptor-service/data/application_configuration.json_example
37ADD /config/keystore.jks /opt/app/dmaap-adaptor-service/etc/cert/keystore.jks
38ADD /config/truststore.jks /opt/app/dmaap-adaptor-service/etc/cert/truststore.jks
39
40RUN chmod -R 777 /opt/app/dmaap-adaptor-service/config/
41
42ADD target/${JAR} /opt/app/dmaap-adaptor-service/dmaap-adaptor.jar
RehanRaza4916abd2021-09-21 10:20:53 +020043CMD ["java", "-jar", "/opt/app/dmaap-adaptor-service/dmaap-adaptor.jar"]