diff options
author | Tim Emiola <temiola@google.com> | 2015-01-21 09:51:45 -0800 |
---|---|---|
committer | Tim Emiola <temiola@google.com> | 2015-01-21 09:51:45 -0800 |
commit | d2130c356170f8b01ccabc63d404a3a4a23d87bb (patch) | |
tree | 1cc87408a4a729e373996f50d6910c4e650b3297 /tools/dockerfile/grpc_php/Dockerfile | |
parent | a36b84ca652681d7dad45c44978ae7d014f5696b (diff) |
Switches the grpc-repo dockerfiles to pull gRPC source from GitHub
Diffstat (limited to 'tools/dockerfile/grpc_php/Dockerfile')
-rw-r--r-- | tools/dockerfile/grpc_php/Dockerfile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tools/dockerfile/grpc_php/Dockerfile b/tools/dockerfile/grpc_php/Dockerfile index 0e50af70a2..177587669c 100644 --- a/tools/dockerfile/grpc_php/Dockerfile +++ b/tools/dockerfile/grpc_php/Dockerfile @@ -1,9 +1,6 @@ # Dockerfile for gRPC PHP FROM grpc/php_base -# Start the daemon that allows access to the protected git-on-borg repos -RUN /var/local/git/gcompute-tools/git-cookie-authdaemon - RUN cd /var/local/git/grpc \ && git pull --recurse-submodules \ && git submodule update --init --recursive @@ -15,4 +12,4 @@ RUN cd /var/local/git/grpc/src/php/ext/grpc && git pull && phpize # Build the grpc PHP extension RUN cd /var/local/git/grpc/src/php/ext/grpc \ && ./configure \ - && make
\ No newline at end of file + && make |