FROM ubuntu:18.04 WORKDIR /build RUN apt-get -y update && apt-get install -y build-essential git-core curl unzip autoconf libtool RUN git clone https://github.com/grpc/grpc-web WORKDIR /build/grpc-web
# Install protoc
RUN ./scripts/init_submodules.sh &&
cd third_party/grpc/third_party/protobuf &&
./autogen.sh && ./configure && make -j8 &&
make install
# Install gen-grpc-web plugin for protoc RUN make install-plugin && ldconfig
WORKDIR /app
Content type
Image
Digest
Size
1.2 GB
Last updated
almost 8 years ago
docker pull craigrhodes/protoc