diff options
author | Tim Emiola <temiola@google.com> | 2015-01-23 05:19:57 -0800 |
---|---|---|
committer | Tim Emiola <temiola@google.com> | 2015-01-23 05:19:57 -0800 |
commit | b776a1996d56cb5233f98e83b7603c391fbe25db (patch) | |
tree | 1801ad9a517991f073d2980a60d1cd071ff9d7ea /tools/dockerfile | |
parent | bdc52f6d3197f72cd495048d93f2a3a10cff3b38 (diff) |
Updates the Go dockerfile to reflect the package restructuring.
- also corrects an error in the Go client test command
Diffstat (limited to 'tools/dockerfile')
-rw-r--r-- | tools/dockerfile/grpc_go/Dockerfile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/dockerfile/grpc_go/Dockerfile b/tools/dockerfile/grpc_go/Dockerfile index ab463b2a00..1b998152a7 100644 --- a/tools/dockerfile/grpc_go/Dockerfile +++ b/tools/dockerfile/grpc_go/Dockerfile @@ -17,11 +17,11 @@ RUN echo 'StrictHostKeyChecking no' >> $HOME/.ssh/config RUN git config --global url."git@github.com:".insteadOf "https://github.com/" # Get the source from GitHub -RUN go get github.com/google/grpc-go +RUN go get github.com/google/grpc-go/rpc # Build the interop client and server -RUN cd src/github.com/google/grpc-go/interop/client && go install -RUN cd src/github.com/google/grpc-go/interop/server && go install +RUN cd src/github.com/google/grpc-go/rpc/interop/client && go install +RUN cd src/github.com/google/grpc-go/rpc/interop/server && go install # Specify the default command such that the interop server runs on its known testing port -CMD ["/bin/bash", "-c 'cd src/github.com/google/grpc-go/interop/server && go run server.go --use_tls=true --port=8020'"] +CMD ["/bin/bash", "-c", "cd src/github.com/google/grpc-go/rpc/interop/server && go run server.go --use_tls=true --port=8020"] |