I have a docker file that starts on the next line
FROM java:8
I thought this should pull the image from the docker container registry and install. no?
when I run a java command inside my container, I get the following error
ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
What is the easiest and best way to install java 8 (openjdk version) using docker?
UPDATE:
RUN apt-get install -y
RUN add-apt-repository -y ppa:openjdk-r/ppa
RUN apt-get update
RUN apt-get install -y openjdk-8-jdk
RUN apt-get install -y openjdk-8-jre
RUN update-alternatives
RUN update-alternatives
source
share