forked from tzach/capstan-example-clojure
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCapstanfile
More file actions
27 lines (23 loc) · 724 Bytes
/
Capstanfile
File metadata and controls
27 lines (23 loc) · 724 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
# Copyright (C) 2014 Cloudius Systems, Ltd.
#
# This work is open source software, licensed under the terms of the
# BSD license as described in the LICENSE file in the top-level directory.
#
# Name of the base image. Capstan will download this automatically from
# Cloudius S3 repository.
#
base: cloudius/osv-openjdk
#
# The command line passed to OSv to start up the application.
#
cmdline: /java.so -jar /capstan-example-clojure.jar
#
# The command to use to build the application. In this example, we just use
# "mvn package".
#
build: lein uberjar
#
# List of files that are included in the generated image.
#
files:
/capstan-example-clojure.jar: ./target/capstan-example-clojure-0.1.0-SNAPSHOT-standalone.jar