You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zg...@apache.org on 2019/03/12 12:46:12 UTC

[hbase] 84/133: HBASE-17860 Implement secure native client connection - ADDENDUM to remove Dockerfile

This is an automated email from the ASF dual-hosted git repository.

zghao pushed a commit to branch HBASE-14850
in repository https://gitbox.apache.org/repos/asf/hbase.git

commit f507a44a5632861bf5b73301a56a7f4e589492df
Author: Enis Soztutar <en...@apache.org>
AuthorDate: Wed May 31 11:34:51 2017 -0700

    HBASE-17860 Implement secure native client connection - ADDENDUM to remove Dockerfile
---
 hbase-native-client/Dockerfile | 58 ------------------------------------------
 1 file changed, 58 deletions(-)

diff --git a/hbase-native-client/Dockerfile b/hbase-native-client/Dockerfile
deleted file mode 100644
index 8b56590..0000000
--- a/hbase-native-client/Dockerfile
+++ /dev/null
@@ -1,58 +0,0 @@
-##
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#     http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-FROM pjameson/buck-folly-watchman:20160511
-
-ARG CC=/usr/bin/gcc-5
-ARG CXX=/usr/bin/g++-5
-ARG CFLAGS="-D_GLIBCXX_USE_CXX11_ABI=0 -fPIC -g -fno-omit-frame-pointer -O2 -pthread"
-ARG CXXFLAGS="-D_GLIBCXX_USE_CXX11_ABI=0 -fPIC -g -fno-omit-frame-pointer -O2 -pthread"
-
-ENV JAVA_HOME="/usr/lib/jvm/java-8-openjdk-amd64/"
-
-RUN apt-get install -y vim maven inetutils-ping python-pip doxygen graphviz clang-format && \
-      pip install yapf && \
-      apt-get -qq clean && \
-      apt-get -y -qq autoremove && \
-      rm -rf /var/lib/{apt,dpkg,cache,log}/ && \
-      rm -rf /tmp/*
-
-RUN git clone https://github.com/google/protobuf.git /usr/src/protobuf && \
-  cd /usr/src/protobuf/ && \
-  git checkout 2.7.0 && \
-  mkdir gmock && \
-  ldconfig && \
-  ./autogen.sh && \
-  ./configure && \
-  make && \
-  make install && \ 
-  make clean && \
-  rm -rf .git && \
-  cd /usr/src && \
-  wget http://www-us.apache.org/dist/zookeeper/zookeeper-3.4.8/zookeeper-3.4.8.tar.gz && \ 
-  tar zxf zookeeper-3.4.8.tar.gz && \ 
-  rm -rf zookeeper-3.4.8.tar.gz && \
-  cd zookeeper-3.4.8 && \
-  cd src/c && \
-  ldconfig && \
-  ./configure && \
-  make && \
-  make install && \
-  make clean && \
-  ldconfig
-
-WORKDIR /usr/src/hbase/hbase-native-client