OCI image spec labels for PAP
[policy/pap.git] / packages / policy-pap-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) 2021 Bell Canada. All rights reserved.
6 #  Modifications Copyright (C) 2022 Nordix Foundation.
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 #-------------------------------------------------------------------------------
23
24 FROM onap/policy-jre-alpine:2.4.3
25
26 LABEL maintainer="Policy Team"
27 LABEL org.opencontainers.image.title="Policy PAP"
28 LABEL org.opencontainers.image.description="Policy PAP image based on Alpine"
29 LABEL org.opencontainers.image.url="https://github.com/onap/policy-pap"
30 LABEL org.opencontainers.image.vendor="ONAP Policy Team"
31 LABEL org.opencontainers.image.licenses="Apache-2.0"
32 LABEL org.opencontainers.image.created="${git.build.time}"
33 LABEL org.opencontainers.image.version="${git.build.version}"
34 LABEL org.opencontainers.image.revision="${git.commit.id.abbrev}"
35
36 ARG POLICY_LOGS=/var/log/onap/policy/pap
37
38 ENV POLICY_LOGS=$POLICY_LOGS
39 ENV POLICY_HOME=$POLICY_HOME/pap
40
41 RUN mkdir -p $POLICY_HOME $POLICY_LOGS $POLICY_HOME/bin && \
42     chown  -R policy:policy $POLICY_HOME $POLICY_LOGS && \
43     mkdir /packages
44 COPY /maven/lib/policy-pap.tar.gz /packages
45
46 RUN tar xvfz /packages/policy-pap.tar.gz --directory $POLICY_HOME \
47     && rm /packages/policy-pap.tar.gz
48
49 WORKDIR $POLICY_HOME
50 COPY policy-pap.sh  bin/.
51 COPY /maven/pap.jar /app
52
53
54 RUN chown -R policy:policy * && chmod 755 bin/*.sh && chown -R policy:policy /app
55
56 USER policy
57 WORKDIR $POLICY_HOME/bin
58 ENTRYPOINT [ "./policy-pap.sh" ]