blob: 4479f79236846b23ea965e19a6fbbb8e1a40c17e [file] [log] [blame]
rameshiyer27befb22b2021-09-06 12:16:56 +01001#-------------------------------------------------------------------------------
2# ============LICENSE_START=======================================================
danielhanrahan54c12dd2022-06-28 16:55:46 +01003# Copyright (C) 2021-2022 Nordix Foundation.
rameshiyer27befb22b2021-09-06 12:16:56 +01004# ================================================================================
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17# SPDX-License-Identifier: Apache-2.0
18# ============LICENSE_END=========================================================
19#-------------------------------------------------------------------------------
20
danielhanrahancd213592022-07-11 18:14:13 +010021FROM busybox AS tarball
22RUN mkdir /packages /extracted
23COPY /maven/lib/http-participant.tar.gz /packages/
24RUN tar xvzf /packages/http-participant.tar.gz --directory /extracted/
rameshiyer27befb22b2021-09-06 12:16:56 +010025
liamfallon928e6702022-04-27 20:55:39 +010026FROM onap/policy-jre-alpine:2.4.3
rameshiyer27befb22b2021-09-06 12:16:56 +010027
28LABEL maintainer="Policy Team"
danielhanrahan54c12dd2022-06-28 16:55:46 +010029LABEL org.opencontainers.image.title="Policy CLAMP ACM HTTP Participant"
30LABEL org.opencontainers.image.description="Policy CLAMP ACM HTTP Participant image based on Alpine"
31LABEL org.opencontainers.image.url="https://github.com/onap/policy-clamp"
32LABEL org.opencontainers.image.vendor="ONAP Policy Team"
33LABEL org.opencontainers.image.licenses="Apache-2.0"
34LABEL org.opencontainers.image.created="${git.build.time}"
35LABEL org.opencontainers.image.version="${git.build.version}"
36LABEL org.opencontainers.image.revision="${git.commit.id.abbrev}"
rameshiyer27befb22b2021-09-06 12:16:56 +010037
rameshiyer2761318022022-07-05 23:08:44 +010038ARG POLICY_LOGS=/var/log/onap/policy/http-participant
rameshiyer27befb22b2021-09-06 12:16:56 +010039
40ENV POLICY_LOGS=$POLICY_LOGS
41ENV POLICY_HOME=$POLICY_HOME/clamp
42
danielhanrahancd213592022-07-11 18:14:13 +010043RUN mkdir -p $POLICY_LOGS $POLICY_HOME && \
44 chown -R policy:policy $POLICY_HOME $POLICY_LOGS
rameshiyer27befb22b2021-09-06 12:16:56 +010045
danielhanrahancd213592022-07-11 18:14:13 +010046COPY --chown=policy:policy --from=tarball /extracted $POLICY_HOME
rameshiyer27befb22b2021-09-06 12:16:56 +010047
48WORKDIR $POLICY_HOME
danielhanrahancd213592022-07-11 18:14:13 +010049COPY --chown=policy:policy http-participant.sh bin/
50COPY --chown=policy:policy /maven/policy-clamp-participant-impl-http.jar /app/app.jar
rameshiyer27befb22b2021-09-06 12:16:56 +010051
danielhanrahancd213592022-07-11 18:14:13 +010052RUN chmod 755 bin/*.sh
rameshiyer27befb22b2021-09-06 12:16:56 +010053
rameshiyer273d8fc9a2021-11-05 14:24:02 +000054EXPOSE 8084
55
rameshiyer27befb22b2021-09-06 12:16:56 +010056USER policy
57WORKDIR $POLICY_HOME/bin
58ENTRYPOINT [ "./http-participant.sh" ]