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 | #------------------------------------------------------------------------------- |
liamfallon | e2e6dff | 2022-04-27 20:55:52 +0100 | [diff] [blame] | 22 | FROM onap/policy-jre-alpine:2.4.3 |
Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [diff] [blame] | 23 | |
Dmitry Puzikov | 74ced99 | 2019-03-26 09:24:50 +0100 | [diff] [blame] | 24 | LABEL maintainer="Policy Team" |
danielhanrahan | 1ad0639 | 2022-06-28 12:04:21 +0100 | [diff] [blame^] | 25 | LABEL org.opencontainers.image.title="Policy XACML PDP" |
| 26 | LABEL org.opencontainers.image.description="Policy XACML PDP image based on Alpine" |
| 27 | LABEL org.opencontainers.image.url="https://github.com/onap/policy-xacml-pdp" |
| 28 | LABEL org.opencontainers.image.vendor="ONAP Policy Team" |
| 29 | LABEL org.opencontainers.image.licenses="Apache-2.0" |
| 30 | LABEL org.opencontainers.image.created="${git.build.time}" |
| 31 | LABEL org.opencontainers.image.version="${git.build.version}" |
| 32 | LABEL org.opencontainers.image.revision="${git.commit.id.abbrev}" |
Dmitry Puzikov | 74ced99 | 2019-03-26 09:24:50 +0100 | [diff] [blame] | 33 | |
Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [diff] [blame] | 34 | ARG POLICY_LOGS=/var/log/onap/policy/pdpx |
| 35 | |
shaoqiu | 3b6306d | 2019-06-28 05:03:09 +0000 | [diff] [blame] | 36 | ENV POLICY_LOGS=$POLICY_LOGS |
Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [diff] [blame] | 37 | |
shaoqiu | 3b6306d | 2019-06-28 05:03:09 +0000 | [diff] [blame] | 38 | ENV POLICY_HOME=$POLICY_HOME/pdpx |
Jim Hahn | 0cc211b | 2020-01-16 16:32:58 -0500 | [diff] [blame] | 39 | RUN apk update && \ |
| 40 | apk add mariadb-client && \ |
waynedunican | 86c91fd | 2022-05-05 09:25:49 +0100 | [diff] [blame] | 41 | apk add postgresql-client && \ |
Jim Hahn | 0cc211b | 2020-01-16 16:32:58 -0500 | [diff] [blame] | 42 | mkdir -p $POLICY_HOME $POLICY_LOGS $POLICY_HOME/etc/ssl $POLICY_HOME/bin $POLICY_HOME/apps && \ |
shaoqiu | 3b6306d | 2019-06-28 05:03:09 +0000 | [diff] [blame] | 43 | chown -R policy:policy $POLICY_HOME $POLICY_LOGS && mkdir /packages |
Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [diff] [blame] | 44 | |
Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [diff] [blame] | 45 | COPY /maven/* /packages |
shaoqiu | 3b6306d | 2019-06-28 05:03:09 +0000 | [diff] [blame] | 46 | RUN tar xvfz /packages/policy-xacmlpdp.tar.gz --directory $POLICY_HOME && \ |
shaoqiu | ad591df | 2019-03-07 05:39:37 +0000 | [diff] [blame] | 47 | rm /packages/policy-xacmlpdp.tar.gz |
Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [diff] [blame] | 48 | |
shaoqiu | 3b6306d | 2019-06-28 05:03:09 +0000 | [diff] [blame] | 49 | WORKDIR $POLICY_HOME |
Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [diff] [blame] | 50 | COPY policy-pdpx.sh bin/. |
waynedunican | 86c91fd | 2022-05-05 09:25:49 +0100 | [diff] [blame] | 51 | COPY policy-pdpx-pg.sh bin/. |
| 52 | RUN chown -R policy:policy * && chmod 755 bin/*.sh && chmod 755 mysql/bin/*.sh && chmod 755 postgres/bin/*.sh |
Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [diff] [blame] | 53 | |
| 54 | USER policy |
shaoqiu | 3b6306d | 2019-06-28 05:03:09 +0000 | [diff] [blame] | 55 | WORKDIR $POLICY_HOME/bin |
Taka Cho | 31a7298 | 2020-11-30 15:45:06 -0500 | [diff] [blame] | 56 | ENTRYPOINT [ "./policy-pdpx.sh" ] |