-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCapstanfile
More file actions
29 lines (24 loc) · 722 Bytes
/
Capstanfile
File metadata and controls
29 lines (24 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#
# Name of the base image. Capstan will download this automatically from
# Cloudius S3 repository.
#
#base: cloudius/osv
base: cloudius/osv-openjdk8
#
# The command line passed to OSv to start up the application.
#
#cmdline: /java.so -cp /clojure-api/app.jar clojure.main -m clojure-api
cmdline: /java.so -jar /clojure-api/app.jar
#
# The command to use to build the application.
# You can use any build tool/command (make/rake/lein/boot) - this runs locally on your machine
#
# For Leiningen, you can use:
#build: lein uberjar
# For Boot, you can use:
#build: boot build
#
# List of files that are included in the generated image.
#
files:
/clojure-api/app.jar: ./target/clojure-api-0.0.1-SNAPSHOT-standalone.jar