Reduce size of docker images for models-simulator
[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 FROM busybox AS tarball
23 RUN mkdir /packages /extracted
24 COPY /maven/lib/models-simulator.tar.gz /packages/
25 RUN tar xvzf /packages/models-simulator.tar.gz --directory /extracted/
26
27 FROM opensuse/leap:15.4
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/simulators
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 RUN zypper -n -q install --no-recommends java-11-openjdk-headless netcat-openbsd && \
47     zypper -n -q update; zypper -n -q clean --all && \
48     groupadd --system policy && \
49     useradd --system --shell /bin/sh -G policy policy && \
50     mkdir -p $POLICY_HOME $POLICY_LOGS && \
51     chown -R policy:policy $POLICY_HOME $POLICY_LOGS
52
53 COPY --chown=policy:policy --from=tarball /extracted $POLICY_HOME
54
55 WORKDIR $POLICY_HOME
56 COPY --chown=policy:policy simulators.sh bin/
57
58 RUN chmod 755 bin/*.sh
59
60 USER policy
61 WORKDIR $POLICY_HOME/bin
62 ENTRYPOINT [ "./simulators.sh" ]