My docker container requires JAVA_HOME to be set. I have added it to the Dockerfile as below
ENV JAVA_HOME /usr/lib/jvm/java-8-openjdk-amd64/jre
However, this is a hardcoding of the value. Is there a way I can get this value dynamically from the image itself
May be you can do something like this in CMD :
and then
Set JAVA_HOME in docker container
Default Docker file of the official image is Dockerfile
If you still want your own image with Java home set. Add this lines to your Dockerfile
The image built from a Dockerfile is forever static. Its Java location will never change unless rebuilt.
When the image is started as a container, however, anything can happen. If there's any scripts that will edit the Java location during runtime, then this script is probably also where
JAVA_HOME
should be updated.If you mean that you want to dynamically build your image using an arbitrary base image with differing java location then this should probably be handled by a build script.