Add nss to Java image as workaround for upstream bug

This commit is contained in:
Disassembler 2019-03-22 11:39:23 +01:00
parent 1bb3a4330e
commit ca3fd66ad3
Signed by: Disassembler
GPG Key ID: 524BD33A0EE29499

View File

@ -3,5 +3,6 @@ LAYER shared/alpine3.9
LAYER shared/alpine3.9-java8
RUN EOF
apk --no-cache add openjdk8-jre-base
# nss needed due to https://github.com/docker-library/openjdk/issues/289 , https://bugs.alpinelinux.org/issues/10126
apk --no-cache add nss openjdk8-jre-base
EOF