I have a Java application containerized (docker) based on Distroless and I would like to add an SSL certificate in JVM's store.
I see an option like using Docker's RUN command to import the SSL certificate into JVM store using Java keytool
option, but since Distroless doesn't come with Shell I couldn't able to use RUN command.
Is there a best way to add an SSL certificate into cacerts
-Java with Distroless as Base image?