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