aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorRamesh Parthasarathy <ramesh.parthasarathy@att.com>2019-03-27 11:44:49 -0700
committerRamesh Parthasarathy <ramesh.parthasarathy@att.com>2019-03-27 11:44:49 -0700
commit96fefb972e92f242bbcad21fe1a3f22d78c555d4 (patch)
treee178ff3fd1243378840d2a02746be961295366d0 /packages
parent77b18c57bc9de5d8ef7f829e18cd8a91a5495b3c (diff)
Added nss library to avoid ssl errors
Added nss library to the docker file to avoid ssl errors with alpine openjdk version "1.8.0_201" and above Change-Id: I42a2dae07a5d3ab4a505adbc9caa85c441f2e0a8 Issue-ID: SO-1675 Signed-off-by: Ramesh Parthasarathy(rp6768)<ramesh.parthasarathy@att.com>
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 de446b734a..cf50868ca5 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
@@ -11,7 +11,7 @@ ENV https_proxy=$HTTPS_PROXY
RUN apk update && apk upgrade
# Install commonly needed tools
-RUN apk --no-cache add curl netcat-openbsd sudo
+RUN apk --no-cache add curl netcat-openbsd sudo nss
# Create 'so' user
RUN addgroup -g 1000 so && adduser -S -u 1000 -G so -s /bin/sh so