Skip to content

Instantly share code, notes, and snippets.

@techkuz
Forked from miguelmota/Dockerfile
Created December 24, 2019 08:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save techkuz/262d9b12fcfe0983ac4d08330d35b2f1 to your computer and use it in GitHub Desktop.
Save techkuz/262d9b12fcfe0983ac4d08330d35b2f1 to your computer and use it in GitHub Desktop.
Dockerfile grpcurl binary download
FROM ubuntu:18.04
RUN apt-get update -y
RUN apt-get install wget -y
RUN wget https://github.com/fullstorydev/grpcurl/releases/download/v1.1.0/grpcurl_1.1.0_linux_x86_64.tar.gz
RUN tar -xvzf grpcurl_1.1.0_linux_x86_64.tar.gz
RUN chmod +x grpcurl
RUN mv grpcurl /usr/local/bin/grpcurl
RUN grpcurl --help
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment