2 # ============LICENSE_START=======================================================
3 # Copyright (C) 2023 Nordix Foundation.
4 # Copyright (C) 2023 OpenInfra Foundation Europe. All rights reserved.
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
10 # http://www.apache.org/licenses/LICENSE-2.0
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.
18 # SPDX-License-Identifier: Apache-2.0
19 # ============LICENSE_END=========================================================
21 FROM openjdk:17-jdk as jre-build
23 RUN $JAVA_HOME/bin/jlink \
25 --add-modules ALL-MODULE-PATH \
32 # Use debian base image (same as openjdk uses)
36 ENV PATH="${JAVA_HOME}/bin:${PATH}"
38 #copy JRE from the base image
39 COPY --from=jre-build /customjre $JAVA_HOME
43 WORKDIR /opt/app/participant/dme
47 ADD src/main/resources/application.yaml /opt/app/participant/dme/config/application.yaml
48 ADD target/${JAR} /opt/app/participant/dme/participant-impl-dme.jar
53 RUN groupadd $user && \
54 useradd -r -g $group $user
55 RUN chown -R $user:$group /opt/app/participant/dme
59 CMD ["/jre/bin/java", "-jar", "/opt/app/participant/dme/participant-impl-dme.jar"]