aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorRamesh Parthasarathy <ramesh.parthasarathy@att.com>2020-05-13 21:46:14 +0000
committerRamesh Parthasarathy <ramesh.parthasarathy@att.com>2020-05-13 21:46:14 +0000
commit69eaf68f9b9724a81aa97d9aa4afa051b52b89a1 (patch)
treeafd6369cad65fc03457a206076189df31441d529 /packages
parent0746d5df51818753e950bf7a18d1d2d5ba583d0a (diff)
Add apache utils to SO base image
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
Diffstat (limited to 'packages')
-rw-r--r--packages/docker/src/main/docker/docker-files/Dockerfile.so-base-image2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/docker/src/main/docker/docker-files/Dockerfile.so-base-image b/packages/docker/src/main/docker/docker-files/Dockerfile.so-base-image
index 031142f216..e3eb954e1e 100644
--- a/packages/docker/src/main/docker/docker-files/Dockerfile.so-base-image
+++ b/packages/docker/src/main/docker/docker-files/Dockerfile.so-base-image
@@ -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