Skip to content

Commit ae0edd1

Browse files
committed
Add grpcurl to debug container
1 parent 5706a26 commit ae0edd1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

shell/Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,15 @@ RUN apt update && apt upgrade -qqy && apt -qqy --fix-missing install \
1818
# https://httpie.org/
1919
# https://jqlang.github.io/jq/
2020
# https://github.com/mikefarah/yq
21-
curl httpie jq \
21+
curl httpie jq wget \
2222
\
2323
# https://fishshell.com/
2424
fish fzf locales
2525

26+
RUN wget https://github.com/fullstorydev/grpcurl/releases/download/v1.9.3/grpcurl_1.9.3_linux_amd64.deb && \
27+
dpkg -i grpcurl_1.9.3_linux_amd64.deb && \
28+
rm grpcurl_1.9.3_linux_amd64.deb
29+
2630
RUN locale-gen en_US.UTF-8 && \
2731
update-locale LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 LC_ALL=en_US.UTF-8 && \
2832
dpkg-reconfigure -f noninteractive tzdata

0 commit comments

Comments
 (0)