From e26f25f57bc22ec35cb50f3a5d5a20e62687b2e4 Mon Sep 17 00:00:00 2001 From: Marek Grabowski Date: Fri, 15 Jan 2016 17:36:14 +0100 Subject: [PATCH] Revert "Add protobuf to the kube build image" --- build/build-image/cross/Dockerfile | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/build/build-image/cross/Dockerfile b/build/build-image/cross/Dockerfile index c8002989117..905394a027d 100644 --- a/build/build-image/cross/Dockerfile +++ b/build/build-image/cross/Dockerfile @@ -24,16 +24,3 @@ ENV KUBE_CROSSPLATFORMS \ windows/amd64 windows/386 RUN cd /usr/src/go/src && for platform in ${KUBE_CROSSPLATFORMS}; do GOOS=${platform%/*} GOARCH=${platform##*/} ./make.bash --no-clean; done - -# Download and install protoc for generating protobuf output -RUN mkdir -p /usr/local/src/protobuf && cd /usr/local/src/protobuf &&\ - wget -q https://github.com/google/protobuf/releases/download/v3.0.0-beta-2/protobuf-cpp-3.0.0-beta-2.tar.gz &&\ - tar xzvf protobuf-cpp-3.0.0-beta-2.tar.gz &&\ - cd protobuf-3.0.0-beta-2 &&\ - ./configure &&\ - make install &&\ - ldconfig &&\ - cd .. &&\ - rm -rf protobuf-3.0.0-beta-2 &&\ - protoc --version -