Skip to content

Instantly share code, notes, and snippets.

@Velrok
Created December 21, 2014 23:30
Show Gist options
  • Save Velrok/11b87e2d09bb0768cab0 to your computer and use it in GitHub Desktop.
Save Velrok/11b87e2d09bb0768cab0 to your computer and use it in GitHub Desktop.
Example build script for a clojure app via giantswarm.io
#!/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