We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4c5252 commit 01b58f3Copy full SHA for 01b58f3
Dockerfile
@@ -35,6 +35,12 @@ RUN curl -sSL "https://github.com/fullstorydev/grpcurl/releases/download/v1.9.2/
35
&& tar xvf /tmp/grpcurl_1.2.tar.gz --no-same-owner \
36
&& mv grpcurl /usr/bin/grpcurl
37
38
+# Install htpasswd
39
+RUN apt-get update && \
40
+ apt-get install -y apache2-utils && \
41
+ apt-get clean && \
42
+ rm -rf /var/lib/apt/lists/*
43
+
44
RUN useradd -ms /bin/bash $USER
45
USER $USER
46
WORKDIR $HOME_DIR
0 commit comments