Taka Cho | a79b198 | 2020-09-04 08:47:09 -0400 | [diff] [blame] | 1 | #------------------------------------------------------------------------------- |
| 2 | # Dockerfile |
| 3 | # ============LICENSE_START======================================================= |
jhh | c6853ef | 2021-02-23 10:13:20 -0600 | [diff] [blame] | 4 | # Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved. |
danielhanrahan | 1ad0639 | 2022-06-28 12:04:21 +0100 | [diff] [blame] | 5 | # Modifications Copyright (C) 2022 Nordix Foundation. |
Taka Cho | a79b198 | 2020-09-04 08:47:09 -0400 | [diff] [blame] | 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 | #------------------------------------------------------------------------------- |
danielhanrahan | b33cb6c | 2022-07-08 15:52:48 +0100 | [diff] [blame] | 22 | |
| 23 | FROM busybox AS tarball |
| 24 | RUN mkdir /packages /extracted |
| 25 | COPY /maven/lib/policy-xacmlpdp.tar.gz /packages/ |
| 26 | RUN tar xvzf /packages/policy-xacmlpdp.tar.gz --directory /extracted/ |
| 27 | |
liamfallon | 0b3c9ef | 2022-12-15 12:39:56 +0000 | [diff] [blame] | 28 | FROM onap/policy-jre-alpine:2.6.0 |
Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [diff] [blame] | 29 | |
Dmitry Puzikov | 74ced99 | 2019-03-26 09:24:50 +0100 | [diff] [blame] | 30 | LABEL maintainer="Policy Team" |
danielhanrahan | 1ad0639 | 2022-06-28 12:04:21 +0100 | [diff] [blame] | 31 | LABEL org.opencontainers.image.title="Policy XACML PDP" |
| 32 | LABEL org.opencontainers.image.description="Policy XACML PDP image based on Alpine" |
| 33 | LABEL org.opencontainers.image.url="https://github.com/onap/policy-xacml-pdp" |
| 34 | LABEL org.opencontainers.image.vendor="ONAP Policy Team" |
| 35 | LABEL org.opencontainers.image.licenses="Apache-2.0" |
| 36 | LABEL org.opencontainers.image.created="${git.build.time}" |
| 37 | LABEL org.opencontainers.image.version="${git.build.version}" |
| 38 | LABEL org.opencontainers.image.revision="${git.commit.id.abbrev}" |
Dmitry Puzikov | 74ced99 | 2019-03-26 09:24:50 +0100 | [diff] [blame] | 39 | |
Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [diff] [blame] | 40 | ARG POLICY_LOGS=/var/log/onap/policy/pdpx |
| 41 | |
shaoqiu | 3b6306d | 2019-06-28 05:03:09 +0000 | [diff] [blame] | 42 | ENV POLICY_LOGS=$POLICY_LOGS |
Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [diff] [blame] | 43 | |
shaoqiu | 3b6306d | 2019-06-28 05:03:09 +0000 | [diff] [blame] | 44 | ENV POLICY_HOME=$POLICY_HOME/pdpx |
Jim Hahn | 0cc211b | 2020-01-16 16:32:58 -0500 | [diff] [blame] | 45 | RUN apk update && \ |
| 46 | apk add mariadb-client && \ |
waynedunican | 86c91fd | 2022-05-05 09:25:49 +0100 | [diff] [blame] | 47 | apk add postgresql-client && \ |
danielhanrahan | b33cb6c | 2022-07-08 15:52:48 +0100 | [diff] [blame] | 48 | mkdir -p $POLICY_HOME $POLICY_LOGS && \ |
| 49 | chown -R policy:policy $POLICY_HOME $POLICY_LOGS |
Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [diff] [blame] | 50 | |
danielhanrahan | b33cb6c | 2022-07-08 15:52:48 +0100 | [diff] [blame] | 51 | COPY --chown=policy:policy --from=tarball /extracted $POLICY_HOME |
Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [diff] [blame] | 52 | |
shaoqiu | 3b6306d | 2019-06-28 05:03:09 +0000 | [diff] [blame] | 53 | WORKDIR $POLICY_HOME |
danielhanrahan | b33cb6c | 2022-07-08 15:52:48 +0100 | [diff] [blame] | 54 | COPY --chown=policy:policy policy-pdpx.sh bin/ |
| 55 | COPY --chown=policy:policy policy-pdpx-pg.sh bin/ |
| 56 | RUN chmod 755 bin/*.sh |
Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [diff] [blame] | 57 | |
| 58 | USER policy |
shaoqiu | 3b6306d | 2019-06-28 05:03:09 +0000 | [diff] [blame] | 59 | WORKDIR $POLICY_HOME/bin |
Taka Cho | 31a7298 | 2020-11-30 15:45:06 -0500 | [diff] [blame] | 60 | ENTRYPOINT [ "./policy-pdpx.sh" ] |