-
Notifications
You must be signed in to change notification settings - Fork 2
/
Capstanfile
30 lines (26 loc) · 844 Bytes
/
Capstanfile
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
29
30
# 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-openjdk8
#
# The command line passed to OSv to start up the application.
#
cmdline: /java.so io.osv.MultiJarLoader -mains /javamains
#
# The command to use to build the application. In this example, we just use
# "mvn package".
#
build: mvn package
#
# List of files that are included in the generated image.
#
files:
/capstan-env-var-java-example.jar: target/capstan-env-var-java-example-1.0-SNAPSHOT-jar-with-dependencies.jar
/javamains: javamains
/usr/mgmt/local-init.yaml: local-init.yaml
/init/00-cmdline: cmdline