Created
December 17, 2014 02:26
-
-
Save int128/d8b2a5af3c949313963c to your computer and use it in GitHub Desktop.
Docker with Gradle application plugin
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 characters
from dockerfile/java:oracle-java7 | |
volume /usr/src/groovy-ssh | |
copy . /usr/src/groovy-ssh | |
run cd /usr/src/groovy-ssh && \ | |
./gradlew --gradle-user-home=.gradle installApp && \ | |
cp -a build/install/groovy-ssh / | |
workdir /groovy-ssh/bin | |
entrypoint ["./groovy-ssh"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment