Hi I\'m new to Docker and trying out to write a new image from the scratch. I am writing this dockerFile to compile and run a simple java program available in the same directory
FROM java:8
WORKDIR / ADD HelloWorld.java HelloWorld.java CMD javac HelloWorld.java ADD HelloWorld.class HelloWorld.class CMD java Test
Update the above details in your Dockerfile the rebuild the docker image and run.