mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
459 B
15 lines
459 B
10 years ago
|
# Dockerfile for gRPC C++
|
||
|
FROM grpc/base
|
||
|
|
||
|
# Start the daemon that allows access to the protected git-on-borg repos
|
||
|
RUN /var/local/git/gcompute-tools/git-cookie-authdaemon
|
||
|
|
||
|
RUN git clone https://team.googlesource.com/one-platform-grpc-team/grpc /var/local/git/grpc
|
||
|
RUN cd /var/local/git/grpc \
|
||
|
&& git pull --recurse-submodules \
|
||
|
&& git submodule update --init --recursive
|
||
|
|
||
|
RUN make install -C /var/local/git/grpc
|
||
|
|
||
|
# Define the default command.
|
||
|
CMD ["bash"]
|