You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by en...@apache.org on 2017/05/31 18:35:27 UTC

hbase git commit: HBASE-17860 Implement secure native client connection - ADDENDUM to remove Dockerfile

Repository: hbase
Updated Branches:
  refs/heads/HBASE-14850 a2dd0a81d -> 54438ea2b


HBASE-17860 Implement secure native client connection - ADDENDUM to remove Dockerfile


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/54438ea2
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/54438ea2
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/54438ea2

Branch: refs/heads/HBASE-14850
Commit: 54438ea2be192b56022ad94acac480855f736a0e
Parents: a2dd0a8
Author: Enis Soztutar <en...@apache.org>
Authored: Wed May 31 11:34:51 2017 -0700
Committer: Enis Soztutar <en...@apache.org>
Committed: Wed May 31 11:34:51 2017 -0700

----------------------------------------------------------------------
 hbase-native-client/Dockerfile | 58 -------------------------------------
 1 file changed, 58 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/54438ea2/hbase-native-client/Dockerfile
----------------------------------------------------------------------
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