Created
December 14, 2015 12:10
-
-
Save mike-boddin/4da9d4c6def0e097b275 to your computer and use it in GitHub Desktop.
Revisions
-
mike-boddin created this gist
Dec 14, 2015 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ FROM java:8 EXPOSE 8080 ENV CODENVY_APP_PORT_8080_HTTP 8080 RUN mkdir -p /home/user/app WORKDIR /home/user/app ADD $app$ /home/user/$app$ RUN unzip -q /home/user/$app$ -d /home/user/app && \ rm /home/user/$app$ CMD java -jar application.jar $args$ run