Created
December 21, 2014 23:30
-
-
Save Velrok/11b87e2d09bb0768cab0 to your computer and use it in GitHub Desktop.
Example build script for a clojure app via giantswarm.io
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
#!/bin/bash | |
set -e | |
lein ring uberjar | |
./increment_version.rb $@ | |
docker build --rm=true -t registry.giantswarm.io/velrok/mb:$(cat ./VERSION) . | |
docker push registry.giantswarm.io/velrok/mb:$(cat ./VERSION) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment