I have a java project built with Restlet Framework. The Project consist of a java file with Server code and other files that are the routes that handle the request. I have made jar of my project. This jar is running on my machine. I want to put my jar on Docker Cloud.
I need help with the scripts in sequence that I need to run on docker terminal to host my jar on docker cloud.
My Dockerfile Code:
FROM openjdk
EXPOSE 8080
ADD ./MagicianServer.jar /srv/Server.jar
CMD java -jar MagicianServer.jar