elinuxhenrik | 02cb601 | 2022-04-04 13:07:36 +0200 | [diff] [blame] | 1 | # |
| 2 | # ============LICENSE_START======================================================= |
BjornMagnussonXA | f7c3ae7 | 2023-03-09 10:16:12 +0100 | [diff] [blame] | 3 | # Copyright (C) 2019-2023 Nordix Foundation. |
JohnKeeney | 94fdf47 | 2024-06-28 15:51:18 +0100 | [diff] [blame] | 4 | # Copyright (C) 2024: OpenInfra Foundation Europe. All rights reserved. |
elinuxhenrik | 02cb601 | 2022-04-04 13:07:36 +0200 | [diff] [blame] | 5 | # ================================================================================ |
| 6 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | # you may not use this file except in compliance with the License. |
| 8 | # You may obtain a copy of the License at |
| 9 | # |
| 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # |
| 12 | # Unless required by applicable law or agreed to in writing, software |
| 13 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | # See the License for the specific language governing permissions and |
| 16 | # limitations under the License. |
| 17 | # |
| 18 | # SPDX-License-Identifier: Apache-2.0 |
| 19 | # ============LICENSE_END========================================================= |
| 20 | # |
BjornMagnussonXA | f7c3ae7 | 2023-03-09 10:16:12 +0100 | [diff] [blame] | 21 | FROM openjdk:17-jdk as jre-build |
| 22 | |
| 23 | RUN $JAVA_HOME/bin/jlink \ |
| 24 | --verbose \ |
| 25 | --add-modules ALL-MODULE-PATH \ |
| 26 | --strip-debug \ |
| 27 | --no-man-pages \ |
| 28 | --no-header-files \ |
| 29 | --compress=2 \ |
| 30 | --output /customjre |
| 31 | |
| 32 | # Use debian base image (same as openjdk uses) |
| 33 | FROM debian:11-slim |
| 34 | |
| 35 | ENV JAVA_HOME=/jre |
| 36 | ENV PATH="${JAVA_HOME}/bin:${PATH}" |
| 37 | |
nitincg | 786936b | 2023-06-16 22:14:31 +0530 | [diff] [blame] | 38 | # Copy JRE from the base image |
BjornMagnussonXA | f7c3ae7 | 2023-03-09 10:16:12 +0100 | [diff] [blame] | 39 | COPY --from=jre-build /customjre $JAVA_HOME |
elinuxhenrik | 02cb601 | 2022-04-04 13:07:36 +0200 | [diff] [blame] | 40 | |
| 41 | ARG JAR |
| 42 | |
| 43 | EXPOSE 8081 8433 |
| 44 | |
| 45 | |
| 46 | WORKDIR /opt/app/policy-agent |
| 47 | RUN mkdir -p /var/log/policy-agent |
| 48 | RUN mkdir -p /opt/app/policy-agent/etc/cert/ |
raviteja.karumuri | 3c60dfc | 2024-06-27 11:25:34 +0100 | [diff] [blame] | 49 | RUN mkdir -p /var/policy-management-service |
elinuxhenrik | 02cb601 | 2022-04-04 13:07:36 +0200 | [diff] [blame] | 50 | EXPOSE 8081 8433 |
| 51 | |
| 52 | ADD /config/application.yaml /opt/app/policy-agent/config/application.yaml |
| 53 | ADD /config/application_configuration.json /opt/app/policy-agent/data/application_configuration.json_example |
| 54 | ADD /config/keystore.jks /opt/app/policy-agent/etc/cert/keystore.jks |
| 55 | ADD /config/truststore.jks /opt/app/policy-agent/etc/cert/truststore.jks |
| 56 | |
| 57 | ARG user=nonrtric |
aravind.est | 7713cc3 | 2024-08-07 16:23:00 +0100 | [diff] [blame] | 58 | ARG userid=120957 |
elinuxhenrik | 02cb601 | 2022-04-04 13:07:36 +0200 | [diff] [blame] | 59 | ARG group=nonrtric |
aravind.est | 7713cc3 | 2024-08-07 16:23:00 +0100 | [diff] [blame] | 60 | ARG groupid=120957 |
elinuxhenrik | 02cb601 | 2022-04-04 13:07:36 +0200 | [diff] [blame] | 61 | |
aravind.est | 7713cc3 | 2024-08-07 16:23:00 +0100 | [diff] [blame] | 62 | RUN groupadd -g $groupid $group && \ |
| 63 | useradd -m -u $userid -g $group $user |
elinuxhenrik | 02cb601 | 2022-04-04 13:07:36 +0200 | [diff] [blame] | 64 | RUN chown -R $user:$group /opt/app/policy-agent |
| 65 | RUN chown -R $user:$group /var/log/policy-agent |
raviteja.karumuri | 3c60dfc | 2024-06-27 11:25:34 +0100 | [diff] [blame] | 66 | RUN chown -R $user:$group /var/policy-management-service |
elinuxhenrik | 02cb601 | 2022-04-04 13:07:36 +0200 | [diff] [blame] | 67 | |
| 68 | USER ${user} |
| 69 | |
| 70 | ADD target/${JAR} /opt/app/policy-agent/policy-agent.jar |
BjornMagnussonXA | f7c3ae7 | 2023-03-09 10:16:12 +0100 | [diff] [blame] | 71 | CMD ["/jre/bin/java", "-jar", "/opt/app/policy-agent/policy-agent.jar"] |