blob: 40532c002d3c84d0a35e7468b4a93ae530375c52 [file] [log] [blame]
rameshiyer279ab7dc72021-07-07 08:02:55 +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/kubernetes-participant.tar.gz /packages
37
38RUN tar xvfz /packages/kubernetes-participant.tar.gz --directory $POLICY_HOME && \
39 rm /packages/kubernetes-participant.tar.gz && \
40 rm -rf $POLICY_HOME/lib
41
42WORKDIR $POLICY_HOME
43COPY kubernetes-participant.sh bin/.
44COPY /maven/app.jar /app
45
46RUN chown -R policy:policy * && \
47 chmod 755 bin/*.sh && \
48 chown -R policy:policy /app && \
49 apk update && \
50 apk add wget && \
51 wget https://get.helm.sh/helm-v3.5.2-linux-amd64.tar.gz && \
52 tar xvf helm-v3.5.2-linux-amd64.tar.gz && \
53 mv linux-amd64/helm /usr/local/bin && \
54 rm -rf linux-amd64 && \
55 rm helm-v3.5.2-linux-amd64.tar.gz && \
56 wget https://storage.googleapis.com/kubernetes-release/release/v1.21.1/bin/linux/amd64/kubectl && \
57 chmod +x kubectl && \
58 mv kubectl /usr/local/bin/kubectl
59
60EXPOSE 8080
61
62USER policy
63WORKDIR $POLICY_HOME/bin
64ENTRYPOINT [ "./kubernetes-participant.sh" ]
65
66