blob: ff1752091ec304358bd3e7e470ea9c19f334a82a [file] [log] [blame]
aravind.esta2f086c2023-10-20 15:22:31 +01001#
2# ============LICENSE_START=======================================================
3# Copyright (C) 2023 Nordix Foundation.
aravind.esta0c92272023-11-16 12:39:51 +00004# Copyright (C) 2023 OpenInfra Foundation Europe. All rights reserved.
aravind.esta2f086c2023-10-20 15:22:31 +01005# ================================================================================
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#
21FROM openjdk:17-jdk as jre-build
22
23RUN $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)
33FROM debian:11-slim
34
35ENV JAVA_HOME=/jre
36ENV PATH="${JAVA_HOME}/bin:${PATH}"
37
38#copy JRE from the base image
39COPY --from=jre-build /customjre $JAVA_HOME
40
41ARG JAR
42
43WORKDIR /opt/app/participant/dme
44
45EXPOSE 8080
46
aravind.esta0c92272023-11-16 12:39:51 +000047ADD src/main/resources/application.yaml /opt/app/participant/dme/config/application.yaml
aravind.esta2f086c2023-10-20 15:22:31 +010048ADD target/${JAR} /opt/app/participant/dme/participant-impl-dme.jar
49
50ARG user=nonrtric
51ARG group=nonrtric
52
53RUN groupadd $user && \
54 useradd -r -g $group $user
55RUN chown -R $user:$group /opt/app/participant/dme
56
57USER ${user}
58
59CMD ["/jre/bin/java", "-jar", "/opt/app/participant/dme/participant-impl-dme.jar"]