blob: 3c208220269ab30af8b34003b2d4669e997d44e6 [file] [log] [blame]
Sirisha_Manchikanti18526e92021-06-01 16:48:25 +01001#-------------------------------------------------------------------------------
2# ============LICENSE_START=======================================================
3# Copyright (C) 2021 Nordix Foundation.
4# ================================================================================
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
21#
22# Docker file to build an image that runs CLAMP on Java 11 or better in alpine
23#
24FROM onap/policy-jre-alpine:2.2.1
25
26LABEL maintainer="Policy Team"
27
28ARG POLICY_LOGS=/var/log/onap/policy/clamp
29
30ENV POLICY_LOGS=$POLICY_LOGS
31ENV POLICY_HOME=$POLICY_HOME/clamp
32
33RUN mkdir -p $POLICY_LOGS $POLICY_HOME $POLICY_HOME/bin && \
34 chown -R policy:policy $POLICY_HOME $POLICY_LOGS && \
35 mkdir /packages
36COPY /maven/lib/policy-participant.tar.gz /packages
37RUN tar xvfz /packages/policy-participant.tar.gz --directory $POLICY_HOME && \
38 rm /packages/policy-participant.tar.gz && \
39 rm -rf $POLICY_HOME/lib
40
41WORKDIR $POLICY_HOME
42COPY policy-participant.sh bin/.
43COPY /maven/app.jar /app
44
45RUN chown -R policy:policy * && chmod 755 bin/*.sh && \
46 chown -R policy:policy /app
47
48USER policy
49WORKDIR $POLICY_HOME/bin
50ENTRYPOINT [ "./policy-participant.sh" ]