Merge "config for 5.0.0 policy-handler new PDP API"
[dcaegen2/deployments.git] / pnda-mirror-container / Dockerfile
1 # ============LICENSE_START=======================================================
2 # org.onap.dcae
3 # ================================================================================
4 # Copyright (c) 2018 Cisco Systems. All rights reserved.
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #      http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 # ============LICENSE_END=========================================================
18
19 FROM centos:7.5.1804 as build
20
21 ARG PNDARELEASE=release/5.0
22 # Can be HDP or CDH
23 ARG HADOOPDIST=HDP
24
25 RUN yum clean all && rm -rf /var/cache/yum/* && yum install gettext git -y
26
27 RUN git clone -b $PNDARELEASE https://github.com/pndaproject/pnda.git
28
29 COPY pnda-5.0-maint.patch /
30 WORKDIR /pnda
31 RUN git apply /pnda-5.0-maint.patch
32
33 WORKDIR /pnda/mirror
34 # Add the -r flag to mirror rpm packages
35 RUN ./create_mirror.sh -d $HADOOPDIST -r
36
37 WORKDIR /pnda/build
38 RUN ./install-build-tools.sh
39
40 RUN yum install bzip2 make which -y
41 RUN source ./set-pnda-env.sh \
42     && PARALLEL="--jobs 1" ./build-pnda.sh RELEASE $PNDARELEASE $HADOOPDIST
43
44 FROM nginx:alpine
45
46 COPY --from=build /pnda/mirror/mirror-dist /usr/share/nginx/html/
47 COPY --from=build /pnda/build/pnda-dist /usr/share/nginx/html/