Skip to content
This repository has been archived by the owner on Oct 6, 2018. It is now read-only.

OutThereLabs/s2i-scala

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Source To Image Scala

This enables source to image for Scala applications.

Installation

To install s2i Scala run:

$ oc process \
    -f https://raw.githubusercontent.com/OutThereLabs/s2i-scala/master/buildconfig.yaml \
    | oc create -f -

You can also use s2i Scala for local development.

Binary Builds

You can do a binary build by attaching the contents of target/universal/stage insteaf of source code:

sbt stage
s2i build --pull-policy=never --copy target/universal/stage outtherelabs/s2i-scala my-app

Running Tests

To run the tests first install greadlink if you are on a mac

$ brew install coreutils

Then use the MAKEFILE

$ cd java8 && make test