Last active
August 29, 2015 14:04
-
-
Save chrisdchristo/23e0c6ceaf087fbbd314 to your computer and use it in GitHub Desktop.
Ubuntu + java8 + vertx2 Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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
https://registry.hub.docker.com/u/chrischristo/ubuntu-java8-vertx2/