# 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 /{{name}}.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:
  /{{name}}.jar: ./target/{{name}}-standalone.jar