65e4783ab8a8627ea364f9b9ab7a69a939c860c3
[policy/models.git] / models-sim / packages / models-simulator-docker / src / main / docker / suse.Dockerfile
1 #
2 # ============LICENSE_START=======================================================
3 # ONAP
4 # ================================================================================
5 # Copyright (C) 2022 Nordix Foundation.
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 #
24 # Docker file to build an image that runs the simulators
25 #
26
27 FROM opensuse/leap:15.3
28
29 LABEL maintainer="Policy Team"
30 LABEL org.opencontainers.image.title="Policy Models Simulator"
31 LABEL org.opencontainers.image.description="Policy Models Simulator image based on OpenSuse"
32 LABEL org.opencontainers.image.url="https://github.com/onap/policy-models"
33 LABEL org.opencontainers.image.vendor="ONAP Policy Team"
34 LABEL org.opencontainers.image.licenses="Apache-2.0"
35 LABEL org.opencontainers.image.created="${git.build.time}"
36 LABEL org.opencontainers.image.version="${git.build.version}"
37 LABEL org.opencontainers.image.revision="${git.commit.id.abbrev}"
38
39 ARG POLICY_LOGS=/var/log/onap/policy/simulators
40
41 ENV POLICY_LOGS=$POLICY_LOGS
42 ENV POLICY_HOME=/opt/app/policy
43 ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8
44 ENV JAVA_HOME=/usr/lib64/jvm/java-11-openjdk-11
45
46 # Create DMaaP simulator user and group
47 # Add simulator-specific directories and set ownership as the simulator user
48 RUN zypper -n -q install --no-recommends gzip java-11-openjdk-headless netcat-openbsd tar && \
49     zypper -n -q update; zypper -n -q clean --all && \
50     groupadd --system policy && \
51     useradd --system --shell /bin/sh -G policy policy && \
52     mkdir -p /opt/app $POLICY_LOGS $POLICY_HOME/simulators $POLICY_HOME/simulators/bin && \
53     chown -R policy:policy /opt/app $POLICY_HOME $POLICY_LOGS && \
54     mkdir /packages
55
56 # Unpack the tarball
57 COPY /maven/* /packages
58 RUN tar xvfz /packages/models-simulator.tar.gz --directory ${POLICY_HOME}/simulators \
59     && rm /packages/models-simulator.tar.gz
60
61 # Ensure everything has the correct permissions
62 # Copy scripts simulator user area
63 COPY simulators.sh ${POLICY_HOME}/simulators/bin
64 RUN find /opt/app -type d -perm 755 \
65     && find /opt/app -type f -perm 644 \
66     && chmod 755 ${POLICY_HOME}/simulators/bin/* \
67     && chown -R policy:policy $POLICY_HOME $POLICY_LOGS
68
69 USER policy:policy
70
71 ENV PATH ${POLICY_HOME}/simulators/bin:$PATH
72 ENTRYPOINT [ "simulators.sh" ]