Update snapshot and/or references of policy/models to latest snapshots
[policy/models.git] / models-sim / packages / models-simulator-docker / src / main / docker / Dockerfile
1 #
2 # ============LICENSE_START=======================================================
3 # ONAP
4 # ================================================================================
5 # Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved.
6 # Modifications Copyright (C) 2020 Bell Canada. All rights reserved.
7 # Modifications Copyright (C) 2022-2023 Nordix Foundation.
8 # ================================================================================
9 # Licensed under the Apache License, Version 2.0 (the "License");
10 # you may not use this file except in compliance with the License.
11 # You may obtain a copy of the License at
12 #
13 #      http://www.apache.org/licenses/LICENSE-2.0
14 #
15 # Unless required by applicable law or agreed to in writing, software
16 # distributed under the License is distributed on an "AS IS" BASIS,
17 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 # See the License for the specific language governing permissions and
19 # limitations under the License.
20 #
21 # SPDX-License-Identifier: Apache-2.0
22 # ============LICENSE_END=========================================================
23 #
24 FROM busybox AS tarball
25 RUN mkdir /packages /extracted
26 COPY /maven/lib/models-simulator.tar.gz /packages/
27 RUN tar xvzf /packages/models-simulator.tar.gz --directory /extracted/
28
29 FROM onap/policy-jre-alpine:3.1.3-SNAPSHOT
30
31 LABEL maintainer="Policy Team"
32 LABEL org.opencontainers.image.title="Policy Models Simulator"
33 LABEL org.opencontainers.image.description="Policy Models Simulator image based on Alpine"
34 LABEL org.opencontainers.image.url="https://github.com/onap/policy-models"
35 LABEL org.opencontainers.image.vendor="ONAP Policy Team"
36 LABEL org.opencontainers.image.licenses="Apache-2.0"
37 LABEL org.opencontainers.image.created="${git.build.time}"
38 LABEL org.opencontainers.image.version="${git.build.version}"
39 LABEL org.opencontainers.image.revision="${git.commit.id.abbrev}"
40
41 ARG POLICY_LOGS=/var/log/onap/policy/simulators
42
43 ENV POLICY_LOGS=$POLICY_LOGS
44 ENV POLICY_HOME=$POLICY_HOME/simulators
45
46 USER root
47 RUN mkdir -p $POLICY_HOME $POLICY_LOGS && \
48     chown -R policy:policy $POLICY_HOME $POLICY_LOGS
49
50 COPY --chown=policy:policy --from=tarball /extracted $POLICY_HOME
51
52 WORKDIR $POLICY_HOME
53 COPY --chown=policy:policy simulators.sh bin/
54
55 RUN chmod 755 bin/*.sh
56
57 USER policy
58 WORKDIR $POLICY_HOME/bin
59 ENTRYPOINT [ "./simulators.sh" ]