We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5706a26 commit ae0edd1Copy full SHA for ae0edd1
shell/Dockerfile
@@ -18,11 +18,15 @@ RUN apt update && apt upgrade -qqy && apt -qqy --fix-missing install \
18
# https://httpie.org/
19
# https://jqlang.github.io/jq/
20
# https://github.com/mikefarah/yq
21
- curl httpie jq \
+ curl httpie jq wget \
22
\
23
# https://fishshell.com/
24
fish fzf locales
25
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
+
30
RUN locale-gen en_US.UTF-8 && \
31
update-locale LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 LC_ALL=en_US.UTF-8 && \
32
dpkg-reconfigure -f noninteractive tzdata
0 commit comments