-
Notifications
You must be signed in to change notification settings - Fork 34
/
bb.edn
15 lines (15 loc) · 845 Bytes
/
bb.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{:paths ["src"]
:deps {local/deps {:local/root "."}
org.babashka/spec.alpha {:git/url "https://github.com/babashka/spec.alpha"
:git/sha "951b49b8c173244e66443b8188e3ff928a0a71e7"}}
:tasks
{:requires ([docker-clojure.core :as dc])
clean (dc/-main "clean")
dockerfiles {:depends [clean]
:task (apply dc/-main "dockerfiles" *command-line-args*)}
manifest (apply dc/-main "manifest" *command-line-args*)
build-images {:task (apply dc/-main "build-images" *command-line-args*)}
test {:extra-paths ["test"]
:requires ([docker-clojure.test-runner :as tr])
:task (tr/-main 'docker-clojure.core-test 'docker-clojure.dockerfile-test
'docker-clojure.manifest-test)}}}