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