Taka Cho | 2c618aa | 2020-09-04 08:49:10 -0400 | [diff] [blame] | 1 | #------------------------------------------------------------------------------- |
| 2 | # Dockerfile |
| 3 | # ============LICENSE_START======================================================= |
Pamela Dragosh | dbbae8b | 2021-02-23 11:00:15 -0500 | [diff] [blame] | 4 | # Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved. |
Rashmi Pujar | 5f91967 | 2022-02-04 21:49:30 -0500 | [diff] [blame] | 5 | # Modifications Copyright (C) 2022 Bell Canada. All rights reserved. |
danielhanrahan | 4be0395 | 2022-06-27 16:23:29 +0100 | [diff] [blame^] | 6 | # Modifications Copyright (C) 2022 Nordix Foundation. |
Taka Cho | 2c618aa | 2020-09-04 08:49:10 -0400 | [diff] [blame] | 7 | # ================================================================================ |
| 8 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | # you may not use this file except in compliance with the License. |
| 10 | # You may obtain a copy of the License at |
| 11 | # |
| 12 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | # |
| 14 | # Unless required by applicable law or agreed to in writing, software |
| 15 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | # See the License for the specific language governing permissions and |
| 18 | # limitations under the License. |
| 19 | # |
| 20 | # SPDX-License-Identifier: Apache-2.0 |
| 21 | # ============LICENSE_END========================================================= |
| 22 | #------------------------------------------------------------------------------- |
liamfallon | cea027d | 2022-04-27 20:55:36 +0100 | [diff] [blame] | 23 | FROM onap/policy-jre-alpine:2.4.3 |
Chenfei Gao | 6ea2e1b | 2019-01-31 16:09:09 -0500 | [diff] [blame] | 24 | |
Dmitry Puzikov | a0745a7 | 2019-03-25 15:00:06 +0100 | [diff] [blame] | 25 | LABEL maintainer="Policy Team" |
danielhanrahan | 4be0395 | 2022-06-27 16:23:29 +0100 | [diff] [blame^] | 26 | LABEL org.opencontainers.image.title="Policy API" |
| 27 | LABEL org.opencontainers.image.description="Policy API image based on Alpine" |
| 28 | LABEL org.opencontainers.image.url="https://github.com/onap/policy-api" |
| 29 | LABEL org.opencontainers.image.vendor="ONAP Policy Team" |
| 30 | LABEL org.opencontainers.image.licenses="Apache-2.0" |
| 31 | LABEL org.opencontainers.image.created="${git.build.time}" |
| 32 | LABEL org.opencontainers.image.version="${git.build.version}" |
| 33 | LABEL org.opencontainers.image.revision="${git.commit.id.abbrev}" |
Dmitry Puzikov | a0745a7 | 2019-03-25 15:00:06 +0100 | [diff] [blame] | 34 | |
Chenfei Gao | 6ea2e1b | 2019-01-31 16:09:09 -0500 | [diff] [blame] | 35 | ARG POLICY_LOGS=/var/log/onap/policy/api |
| 36 | |
shaoqiu | d0fe049 | 2019-06-25 06:10:52 +0000 | [diff] [blame] | 37 | ENV POLICY_LOGS=$POLICY_LOGS |
| 38 | ENV POLICY_HOME=$POLICY_HOME/api |
Chenfei Gao | 6ea2e1b | 2019-01-31 16:09:09 -0500 | [diff] [blame] | 39 | |
shaoqiu | d0fe049 | 2019-06-25 06:10:52 +0000 | [diff] [blame] | 40 | RUN mkdir -p $POLICY_LOGS $POLICY_HOME $POLICY_HOME/bin && \ |
Jim Hahn | 97a361d | 2020-01-16 16:35:45 -0500 | [diff] [blame] | 41 | chown -R policy:policy $POLICY_HOME $POLICY_LOGS && \ |
| 42 | mkdir /packages |
Rashmi Pujar | 5f91967 | 2022-02-04 21:49:30 -0500 | [diff] [blame] | 43 | COPY /maven/lib/policy-api.tar.gz /packages |
shaoqiu | d0fe049 | 2019-06-25 06:10:52 +0000 | [diff] [blame] | 44 | RUN tar xvfz /packages/policy-api.tar.gz --directory $POLICY_HOME && \ |
shaoqiu | f626b9f | 2019-03-06 05:37:04 +0000 | [diff] [blame] | 45 | rm /packages/policy-api.tar.gz |
Chenfei Gao | 6ea2e1b | 2019-01-31 16:09:09 -0500 | [diff] [blame] | 46 | |
shaoqiu | d0fe049 | 2019-06-25 06:10:52 +0000 | [diff] [blame] | 47 | WORKDIR $POLICY_HOME |
Chenfei Gao | 6ea2e1b | 2019-01-31 16:09:09 -0500 | [diff] [blame] | 48 | COPY policy-api.sh bin/. |
Rashmi Pujar | 5f91967 | 2022-02-04 21:49:30 -0500 | [diff] [blame] | 49 | COPY /maven/api.jar /app |
shaoqiu | d0fe049 | 2019-06-25 06:10:52 +0000 | [diff] [blame] | 50 | |
Rashmi Pujar | 5f91967 | 2022-02-04 21:49:30 -0500 | [diff] [blame] | 51 | RUN chown -R policy:policy * && chmod 755 bin/*.sh && chown -R policy:policy /app |
Chenfei Gao | 6ea2e1b | 2019-01-31 16:09:09 -0500 | [diff] [blame] | 52 | |
| 53 | USER policy |
shaoqiu | d0fe049 | 2019-06-25 06:10:52 +0000 | [diff] [blame] | 54 | WORKDIR $POLICY_HOME/bin |
danielhanrahan | 4be0395 | 2022-06-27 16:23:29 +0100 | [diff] [blame^] | 55 | ENTRYPOINT [ "./policy-api.sh" ] |