Nicolas Noble | ddef246 | 2015-01-06 18:08:25 -0800 | [diff] [blame^] | 1 | # Dockerfile for gRPC C++ |
| 2 | FROM grpc/base |
| 3 | |
| 4 | # Start the daemon that allows access to the protected git-on-borg repos |
| 5 | RUN /var/local/git/gcompute-tools/git-cookie-authdaemon |
| 6 | |
| 7 | RUN git clone https://team.googlesource.com/one-platform-grpc-team/grpc /var/local/git/grpc |
| 8 | RUN cd /var/local/git/grpc \ |
| 9 | && git pull --recurse-submodules \ |
| 10 | && git submodule update --init --recursive |
| 11 | |
| 12 | RUN make install -C /var/local/git/grpc |
| 13 | |
| 14 | # Define the default command. |
| 15 | CMD ["bash"] |