Added nss library to avoid ssl errors 13/83513/1
authorRamesh Parthasarathy <ramesh.parthasarathy@att.com>
Wed, 27 Mar 2019 18:44:49 +0000 (11:44 -0700)
committerRamesh Parthasarathy <ramesh.parthasarathy@att.com>
Wed, 27 Mar 2019 18:44:49 +0000 (11:44 -0700)
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>
packages/docker/src/main/docker/docker-files/Dockerfile.so-base-image

index de446b7..cf50868 100644 (file)
@@ -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