diff --git a/BigData/CentOS7.6.1810/ambari/Dockerfile-ambari-2.7.3.0_DF b/BigData/CentOS7.6.1810/ambari/Dockerfile-ambari-2.7.3.0_DF index af9cbb5451751779fbdce6801162d394d9fe3fb7..3f9aec8f0a88f7c52c49bad189033364cda00993 100755 --- a/BigData/CentOS7.6.1810/ambari/Dockerfile-ambari-2.7.3.0_DF +++ b/BigData/CentOS7.6.1810/ambari/Dockerfile-ambari-2.7.3.0_DF @@ -40,6 +40,7 @@ RUN git config --global http.sslVerify false \ # && git submodule update \ && wget http://archive-server:50050/cache-data/BigData/ENV/phantomjs.tar.gz \ && tar -zxf phantomjs.tar.gz \ + && cd phantomjs \ && echo Y | python build.py || true \ && sed -i 's/-pipe -O3 -fPIC/-pipe -O2 -fPIC/g' src/qt/qtbase/src/gui/Makefile \ && echo Y | python build.py \ diff --git a/BigData/CentOS7.6.1810/hdp/Dockerfile-tez-3.1.0 b/BigData/CentOS7.6.1810/hdp/Dockerfile-tez-3.1.0 index a1db412f3f5d5d08530ad0a9848f3a02dd4ceb89..03d90aaa7f47f7fc98b4e868118816e8ab14d88f 100644 --- a/BigData/CentOS7.6.1810/hdp/Dockerfile-tez-3.1.0 +++ b/BigData/CentOS7.6.1810/hdp/Dockerfile-tez-3.1.0 @@ -53,7 +53,8 @@ RUN yum install -y flex bison gperf ruby freetype-devel fontconfig-devel libicu- # && git submodule init \ # && git submodule update && wget http://archive-server:50050/cache-data/BigData/ENV/phantomjs.tar.gz \ - && tar -zxf phantomjs.tar.gz + && tar -zxf phantomjs.tar.gz \ + && cd phantomjs WORKDIR /home/phantomjs RUN python build.py -c || sed -i 's/-pipe -O3 -fPIC/-pipe -O2 -fPIC/g' src/qt/qtbase/src/gui/Makefile \ && python build.py -c \ @@ -67,7 +68,7 @@ RUN source /etc/profile # install nodejs and npm WORKDIR /home #RUN wget http://nodejs.org/dist/v8.6.0/node-v8.6.0-linux-arm64.tar.gz \ -RUN wget http://archive-server:50050/cache-data/BigData/HDP/spark/node-v8.6.0-linux-arm64.tar.gz \ +RUN wget http://archive-server:50050/cache-data/BigData/HDP/tez/node-v8.6.0-linux-arm64.tar.gz \ && tar -zxf node-v8.6.0-linux-arm64.tar.gz \ && mv node-v8.6.0-linux-arm64 /opt/tools/installed # set ENV @@ -82,7 +83,7 @@ RUN yum install -y protobuf protobuf-devel \ # compile tez WORKDIR /home #RUN wget https://github.com/hortonworks/tez-release/archive/HDP-3.1.0.0-78-tag.tar.gz \ -RUN wget http://archive-server:50050/cache-data/BigData/HDP/spark/HDP-3.1.0.0-78-tag.tar.gz \ +RUN wget http://archive-server:50050/cache-data/BigData/HDP/tez/HDP-3.1.0.0-78-tag.tar.gz \ && tar -zxf HDP-3.1.0.0-78-tag.tar.gz \ && cd tez-release-HDP-3.1.0.0-78-tag \ && sed -i '48s?https://repository.apache.org/content/repositories/snapshots?https://repo.hortonworks.com/content/repositories/releases/?' pom.xml \