blob: 9843699a87946011e158e0063959ad10a4d8d70f [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
PatrikBuhr18fddb82021-09-15 15:43:53 +020033
34ADD /config/application.yaml /opt/app/dmaap-adaptor-service/config/application.yaml
35ADD /config/application_configuration.json /opt/app/dmaap-adaptor-service/data/application_configuration.json_example
36ADD /config/keystore.jks /opt/app/dmaap-adaptor-service/etc/cert/keystore.jks
37ADD /config/truststore.jks /opt/app/dmaap-adaptor-service/etc/cert/truststore.jks
38
ecaiyanlinuxe41d28c2021-12-01 16:18:36 +010039
40RUN groupadd -g 999 appuser && \
41 useradd -r -u 999 -g appuser appuser
42RUN chown -R appuser:appuser /var/dmaap-adaptor-service/
43RUN chown -R appuser:appuser /opt/app/dmaap-adaptor-service/
44USER appuser
PatrikBuhr18fddb82021-09-15 15:43:53 +020045
46ADD target/${JAR} /opt/app/dmaap-adaptor-service/dmaap-adaptor.jar
RehanRaza4916abd2021-09-21 10:20:53 +020047CMD ["java", "-jar", "/opt/app/dmaap-adaptor-service/dmaap-adaptor.jar"]