PatrikBuhr | 18fddb8 | 2021-09-15 15:43:53 +0200 | [diff] [blame] | 1 | # |
| 2 | # ============LICENSE_START======================================================= |
RehanRaza | 4916abd | 2021-09-21 10:20:53 +0200 | [diff] [blame] | 3 | # O-RAN-SC |
PatrikBuhr | 18fddb8 | 2021-09-15 15:43:53 +0200 | [diff] [blame] | 4 | # ================================================================================ |
RehanRaza | 4916abd | 2021-09-21 10:20:53 +0200 | [diff] [blame] | 5 | # Copyright (C) 2021 Nordix Foundation. All rights reserved. |
PatrikBuhr | 18fddb8 | 2021-09-15 15:43:53 +0200 | [diff] [blame] | 6 | # ================================================================================ |
| 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 | |
| 23 | FROM openjdk:11-jre-slim |
| 24 | |
| 25 | EXPOSE 8084 8435 |
| 26 | |
| 27 | ARG JAR |
| 28 | |
| 29 | WORKDIR /opt/app/dmaap-adaptor-service |
| 30 | RUN mkdir -p /var/log/dmaap-adaptor-service |
| 31 | RUN mkdir -p /opt/app/dmaap-adaptor-service/etc/cert/ |
| 32 | RUN mkdir -p /var/dmaap-adaptor-service |
PatrikBuhr | 18fddb8 | 2021-09-15 15:43:53 +0200 | [diff] [blame] | 33 | |
| 34 | ADD /config/application.yaml /opt/app/dmaap-adaptor-service/config/application.yaml |
| 35 | ADD /config/application_configuration.json /opt/app/dmaap-adaptor-service/data/application_configuration.json_example |
| 36 | ADD /config/keystore.jks /opt/app/dmaap-adaptor-service/etc/cert/keystore.jks |
| 37 | ADD /config/truststore.jks /opt/app/dmaap-adaptor-service/etc/cert/truststore.jks |
| 38 | |
ecaiyanlinux | e41d28c | 2021-12-01 16:18:36 +0100 | [diff] [blame] | 39 | |
| 40 | RUN groupadd -g 999 appuser && \ |
| 41 | useradd -r -u 999 -g appuser appuser |
| 42 | RUN chown -R appuser:appuser /var/dmaap-adaptor-service/ |
| 43 | RUN chown -R appuser:appuser /opt/app/dmaap-adaptor-service/ |
| 44 | USER appuser |
PatrikBuhr | 18fddb8 | 2021-09-15 15:43:53 +0200 | [diff] [blame] | 45 | |
| 46 | ADD target/${JAR} /opt/app/dmaap-adaptor-service/dmaap-adaptor.jar |
RehanRaza | 4916abd | 2021-09-21 10:20:53 +0200 | [diff] [blame] | 47 | CMD ["java", "-jar", "/opt/app/dmaap-adaptor-service/dmaap-adaptor.jar"] |