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
#303 disabled the upstream entrypoint, which is __cacert_entrypoint.sh (at least in eclipse-temurin:8-jdk-jammy). This script can help set up the Java truststore. Can the functionality be reintroduced? It seems to me like setting up the truststore before Tomcat start-up would be a common use case. The script even acknowledges and deals with the issue for which it was bypassed:
#!/usr/bin/env bash# Sheband needs to be `bash`, see https://github.com/adoptium/containers/issues/415 for details
However, I just found a recent change that switches this to sh again.
#!/usr/bin/env sh# Converted to POSIX shell to avoid the need for bash in the image
The text was updated successfully, but these errors were encountered:
#303 disabled the upstream entrypoint, which is
__cacert_entrypoint.sh
(at least ineclipse-temurin:8-jdk-jammy
). This script can help set up the Java truststore. Can the functionality be reintroduced? It seems to me like setting up the truststore before Tomcat start-up would be a common use case. The script even acknowledges and deals with the issue for which it was bypassed:However, I just found a recent change that switches this to
sh
again.The text was updated successfully, but these errors were encountered: