Skip to content

Instantly share code, notes, and snippets.

@int128
Created December 17, 2014 02:26
Show Gist options
  • Save int128/d8b2a5af3c949313963c to your computer and use it in GitHub Desktop.
Save int128/d8b2a5af3c949313963c to your computer and use it in GitHub Desktop.
Docker with Gradle application plugin
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