Add apache utils to SO base image 43/107643/1
authorRamesh Parthasarathy <ramesh.parthasarathy@att.com>
Wed, 13 May 2020 21:46:14 +0000 (21:46 +0000)
committerRamesh Parthasarathy <ramesh.parthasarathy@att.com>
Wed, 13 May 2020 21:46:14 +0000 (21:46 +0000)
To encode plain text passwords using htpasswd
apache utils has been added to SO base image

Issue-ID: SO-2932
Signed-off-by: Ramesh Parthasarathy(rp6768)<ramesh.parthasarathy@att.com>
Change-Id: Ic92ac23ff604d1c86c5fc3aeb1c328b8cdcecad1

packages/docker/src/main/docker/docker-files/Dockerfile.so-base-image

index 031142f..e3eb954 100644 (file)
@@ -8,7 +8,7 @@ ENV http_proxy=$HTTP_PROXY
 ENV https_proxy=$HTTPS_PROXY
 
 # Install commonly needed tools
-RUN apk --no-cache add curl netcat-openbsd nss
+RUN apk --no-cache add curl netcat-openbsd nss apache2-utils
 
 # Create 'so' user
 RUN addgroup -g 1000 so && adduser -S -u 1000 -G so -s /bin/sh so