To add certificates to a Java image you need to use "keytool" e.g:
keytool -import -alias $filename -file $filename -keystore /etc/ssl/certs/java/cacerts -storepass changeit -noprompt
There are probably other platforms with similar bespoke solutions. In these cases we could add a flag (e.g. --add-java-cert) or try to detect if a Java image was being used.
To add certificates to a Java image you need to use "keytool" e.g:
There are probably other platforms with similar bespoke solutions. In these cases we could add a flag (e.g.
--add-java-cert) or try to detect if a Java image was being used.