Thursday, March 02, 2017

Dockerize Java Application



# Use this base image for JDK 8
# You can even use this image to set up maven and build from source the fat jar
# that you will execute below.
# See this for setting up maven - https://runnable.com/docker/java/dockerize-your-java-application
FROM sjsucohort6/oracle-java:8
MAINTAINER Watsh Rajneesh <watsh.rajneesh@sjsu.edu>
WORKDIR /slackbot
# Use maven-shade-plugin to create a fat jar of your application which runs as a service
# see my gist on slackbot for example pom.xml or google it up.
ADD ./target/slackbot-1.0-SNAPSHOT.jar /slackbot
CMD ["java", "-jar", "slackbot-1.0-SNAPSHOT.jar"]
view raw Dockerfile hosted with ❤ by GitHub

No comments:

Popular micro services patterns

Here are some popular Microservice design patterns that a programmer should know: Service Registry  pattern provides a  central location  fo...