You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 2, 2020. It is now read-only.
# Note: Zalando CA should have been automatically imported into Java trust store by Debian
# currently, Ubuntu 15.10 does not properly generate truststore for the JDK
# the ca-certificates jks-keystore update.d hook does not know about java-8 :-(
# Workaround: import all certs manually
RUN for i in /etc/ssl/certs/*.pem; do yes | keytool -importcert -alias $i -keystore /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/security/cacerts -storepass changeit -file $i; done
RUN keytool -list -keystore /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/security/cacerts -storepass changeit | grep zalando