f2c6a6fe6736ef99ea8a2b6e0e2ca1ce63e4b094
[policy/xacml-pdp.git] / packages / policy-xacmlpdp-docker / src / main / docker / Dockerfile
1 #-------------------------------------------------------------------------------
2 # Dockerfile
3 # ============LICENSE_START=======================================================
4 #  Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved.
5 #  Modifications Copyright (C) 2022-2023 Nordix Foundation.
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 #-------------------------------------------------------------------------------
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
28 FROM onap/policy-jre-alpine:3.1.2
29
30 LABEL maintainer="Policy Team"
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}"
39
40 ARG POLICY_LOGS=/var/log/onap/policy/pdpx
41
42 ENV POLICY_LOGS=$POLICY_LOGS
43
44 ENV POLICY_HOME=$POLICY_HOME/pdpx
45 USER root
46 RUN apk update && \
47     apk add mariadb-client && \
48     apk add postgresql-client && \
49     mkdir -p $POLICY_HOME $POLICY_LOGS && \
50     chown -R policy:policy $POLICY_HOME $POLICY_LOGS
51
52 COPY --chown=policy:policy --from=tarball /extracted $POLICY_HOME
53
54 WORKDIR $POLICY_HOME
55 COPY --chown=policy:policy policy-pdpx.sh bin/
56 COPY --chown=policy:policy policy-pdpx-pg.sh bin/
57 RUN chmod 755 bin/*.sh
58
59 USER policy
60 WORKDIR $POLICY_HOME/bin
61 ENTRYPOINT [ "./policy-pdpx.sh" ]