Skip to content

Instantly share code, notes, and snippets.

@chrisdchristo
Last active August 29, 2015 14:04
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 chrisdchristo/23e0c6ceaf087fbbd314 to your computer and use it in GitHub Desktop.
Save chrisdchristo/23e0c6ceaf087fbbd314 to your computer and use it in GitHub Desktop.
Ubuntu + java8 + vertx2 Dockerfile
# chrischristo/ubuntu-java8-vertx2
FROM chrischristo/ubuntu-java8
ENV VERTX_VERSION 2.1.1
RUN wget http://dl.bintray.com/vertx/downloads/vert.x-$VERTX_VERSION.tar.gz
RUN tar -zvxf vert.x-$VERTX_VERSION.tar.gz
RUN mv vert.x-$VERTX_VERSION /var/lib/vertx
RUN ln -s /var/lib/vertx/bin/vertx /usr/bin/vertx
RUN rm -rf vert.x*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment