this container install grpc and protobuf on ubuntu:16.04
908
#Dockerfile reference to image grpc/cxx
FROM ubuntu:16.04
RUN apt-get update && apt-get install -y
build-essential autoconf libtool
git
pkg-config
&& apt-get clean
ENV GRPC_RELEASE_TAG v1.0.0
RUN git clone -b ${GRPC_RELEASE_TAG} https://github.com/grpc/grpc /var/local/git/grpc
RUN cd /var/local/git/grpc &&
git submodule update --init &&
make &&
make install && make clean
#install protoc
RUN cd /var/local/git/grpc/third_party/protobuf &&
make && make install && make clean
Content type
Image
Digest
Size
578.5 MB
Last updated
almost 9 years ago
docker pull 123why/grpc