Skip to content

Instantly share code, notes, and snippets.

@davidwong
Created May 27, 2015 10:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidwong/70c068cd72280db4aef4 to your computer and use it in GitHub Desktop.
Save davidwong/70c068cd72280db4aef4 to your computer and use it in GitHub Desktop.
Dockerfile for adding JRebel to a Tomcat image
FROM tomcat:8-jre8
MAINTAINER "David Wong"
RUN mkdir /jrebel
ADD jrebel.jar /jrebel/
ENV CATALINA_OPTS="-javaagent:/jrebel/jrebel.jar -Drebel.remoting_plugin=true"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment