Sirisha_Manchikanti | 18526e9 | 2021-06-01 16:48:25 +0100 | [diff] [blame^] | 1 | #------------------------------------------------------------------------------- |
| 2 | # ============LICENSE_START======================================================= |
| 3 | # Copyright (C) 2021 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 | # |
| 22 | # Docker file to build an image that runs CLAMP on Java 11 or better in alpine |
| 23 | # |
| 24 | FROM onap/policy-jre-alpine:2.2.1 |
| 25 | |
| 26 | LABEL maintainer="Policy Team" |
| 27 | |
| 28 | ARG POLICY_LOGS=/var/log/onap/policy/clamp |
| 29 | |
| 30 | ENV POLICY_LOGS=$POLICY_LOGS |
| 31 | ENV POLICY_HOME=$POLICY_HOME/clamp |
| 32 | |
| 33 | RUN mkdir -p $POLICY_LOGS $POLICY_HOME $POLICY_HOME/bin && \ |
| 34 | chown -R policy:policy $POLICY_HOME $POLICY_LOGS && \ |
| 35 | mkdir /packages |
| 36 | COPY /maven/lib/policy-participant.tar.gz /packages |
| 37 | RUN tar xvfz /packages/policy-participant.tar.gz --directory $POLICY_HOME && \ |
| 38 | rm /packages/policy-participant.tar.gz && \ |
| 39 | rm -rf $POLICY_HOME/lib |
| 40 | |
| 41 | WORKDIR $POLICY_HOME |
| 42 | COPY policy-participant.sh bin/. |
| 43 | COPY /maven/app.jar /app |
| 44 | |
| 45 | RUN chown -R policy:policy * && chmod 755 bin/*.sh && \ |
| 46 | chown -R policy:policy /app |
| 47 | |
| 48 | USER policy |
| 49 | WORKDIR $POLICY_HOME/bin |
| 50 | ENTRYPOINT [ "./policy-participant.sh" ] |