Sign inSign up

123why/grpc

By 123why

Updated almost 9 years ago

this container install grpc and protobuf on ubuntu:16.04

Image
0

908

123why/grpc repository overview

#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

install 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

Tag summary

Content type

Image

Digest

Size

578.5 MB

Last updated

almost 9 years ago

docker pull 123why/grpc