blob: c6b8f3000086b66f4e5ea9114a3e279e406df3c4 [file] [log] [blame]
Julien Barbotbfa1bbe2018-08-20 18:42:48 +02001# ============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
19FROM centos:7.5.1804 as build
20
21ARG PNDARELEASE=develop
22
23RUN yum clean all && rm -rf /var/cache/yum/* && yum install gettext git -y
24
25RUN git clone -b $PNDARELEASE https://github.com/pndaproject/pnda.git
26
27WORKDIR /pnda/mirror
Julien Barbot43f93c02018-08-31 11:13:37 +020028RUN ./create_mirror.sh HDP
Julien Barbotbfa1bbe2018-08-20 18:42:48 +020029
30WORKDIR /pnda/build
31RUN ./install-build-tools.sh
32
33RUN yum install bzip2 make which -y
34RUN source ./set-pnda-env.sh \
Julien Barbot43f93c02018-08-31 11:13:37 +020035 && ./build-pnda.sh BRANCH $PNDARELEASE HDP
Julien Barbotbfa1bbe2018-08-20 18:42:48 +020036
37FROM nginx:alpine
38
39COPY --from=build /pnda/mirror/mirror-dist /usr/share/nginx/html/
40COPY --from=build /pnda/build/pnda-dist /usr/share/nginx/html/