Repository: bigtop Updated Branches: refs/heads/master cd55c1449 -> 9c454388c
BIGTOP-2535: Adding frontend-maven-plugins v1.1.0 to ppc64le slave images Signed-off-by: Amir Sanjar <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/9c454388 Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/9c454388 Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/9c454388 Branch: refs/heads/master Commit: 9c454388c0ebb5cf90ae0655d2969b5f557f29f5 Parents: cd55c14 Author: Amir Sanjar <[email protected]> Authored: Thu Sep 15 15:06:41 2016 -0500 Committer: Amir Sanjar <[email protected]> Committed: Wed Oct 19 17:13:28 2016 -0500 ---------------------------------------------------------------------- docker/bigtop-slaves/ubuntu-16.04-ppc64le/Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/9c454388/docker/bigtop-slaves/ubuntu-16.04-ppc64le/Dockerfile ---------------------------------------------------------------------- diff --git a/docker/bigtop-slaves/ubuntu-16.04-ppc64le/Dockerfile b/docker/bigtop-slaves/ubuntu-16.04-ppc64le/Dockerfile index 9623648..1c60931 100644 --- a/docker/bigtop-slaves/ubuntu-16.04-ppc64le/Dockerfile +++ b/docker/bigtop-slaves/ubuntu-16.04-ppc64le/Dockerfile @@ -19,4 +19,15 @@ COPY bigtop_toolchain /etc/puppet/modules/bigtop_toolchain RUN puppet apply -e "include bigtop_toolchain::installer" COPY . /tmp/bigtop +#RUN git git clone https://github.com/OpenPOWER-BigData/frontend-maven-plugin.git +RUN wget https://github.com/OpenPOWER-BigData/frontend-maven-plugin/archive/master.zip && \ + unzip master.zip && \ + cd /frontend-maven-plugin-master && \ + /usr/local/apache-maven-3.3.9/bin/mvn clean install -DskipTests +RUN cd .. +RUN rm -rf frontend-maven-plugin-master +RUN wget https://github.com/ibmsoe/phantomjs/releases/download/2.1.1/phantomjs-2.1.1-linux-ppc64.tar.bz2 +RUN tar xvf phantomjs-2.1.1-linux-ppc64.tar.bz2 && \ + cp /phantomjs-2.1.1-linux-ppc64/bin/phantomjs /usr/bin && \ + rm -rf phantomjs-2.1.1-linux-ppc64 RUN cd /tmp/bigtop && ./gradlew && cd && rm -rf /tmp/bigtop
