Add an example and fix path to downloaded proto file

This commit is contained in:
Marshall Jones
2019-08-21 15:15:01 -07:00
parent 5d221e781a
commit ffe5dd91c5
2 changed files with 13 additions and 1 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ rm -rf linux-amd64
RUN curl -sSL "https://github.com/bojand/ghz/releases/download/v0.39.0/ghz_0.39.0_Linux_x86_64.tar.gz" | tar xz -C /tmp && \
mv /tmp/ghz /usr/local/bin && chmod +x /usr/local/bin/ghz && rm -rf /tmp/ghz-web
ADD https://github.com/grpc/grpc-proto/blob/master/grpc/health/v1/health.proto /tmp/ghz/health.proto
ADD https://raw.githubusercontent.com/grpc/grpc-proto/master/grpc/health/v1/health.proto /tmp/ghz/health.proto
RUN ls /tmp