Skip to content

Commit 01b58f3

Browse files
committed
change: Install htpasswd
1 parent d4c5252 commit 01b58f3

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@ RUN curl -sSL "https://github.com/fullstorydev/grpcurl/releases/download/v1.9.2/
3535
&& tar xvf /tmp/grpcurl_1.2.tar.gz --no-same-owner \
3636
&& mv grpcurl /usr/bin/grpcurl
3737

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+
3844
RUN useradd -ms /bin/bash $USER
3945
USER $USER
4046
WORKDIR $HOME_DIR

0 commit comments

Comments
 (0)