blob: bed957c37af172730c8b01dbd29064d04d5bdd0f [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#
liamfallon43098042022-01-25 19:55:43 +000022# Docker file to build an image that runs the CLAMP ACM K8S Participant on Java 11 or better in alpine
rameshiyer279ab7dc72021-07-07 08:02:55 +010023#
liamfallon928e6702022-04-27 20:55:39 +010024FROM onap/policy-jre-alpine:2.4.3
rameshiyer279ab7dc72021-07-07 08:02:55 +010025
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 && \
FrancescoFioraEst252a4bb2021-07-23 15:53:46 +010039 rm /packages/kubernetes-participant.tar.gz
rameshiyer279ab7dc72021-07-07 08:02:55 +010040
41WORKDIR $POLICY_HOME
42COPY kubernetes-participant.sh bin/.
43COPY /maven/app.jar /app
44
45RUN chown -R policy:policy * && \
46 chmod 755 bin/*.sh && \
47 chown -R policy:policy /app && \
48 apk update && \
49 apk add wget && \
50 wget https://get.helm.sh/helm-v3.5.2-linux-amd64.tar.gz && \
51 tar xvf helm-v3.5.2-linux-amd64.tar.gz && \
52 mv linux-amd64/helm /usr/local/bin && \
53 rm -rf linux-amd64 && \
54 rm helm-v3.5.2-linux-amd64.tar.gz && \
55 wget https://storage.googleapis.com/kubernetes-release/release/v1.21.1/bin/linux/amd64/kubectl && \
56 chmod +x kubectl && \
57 mv kubectl /usr/local/bin/kubectl
58
rameshiyer274334af12021-07-16 07:27:16 +010059EXPOSE 8083
rameshiyer279ab7dc72021-07-07 08:02:55 +010060
61USER policy
62WORKDIR $POLICY_HOME/bin
63ENTRYPOINT [ "./kubernetes-participant.sh" ]
64
65