Skip to content

Latest commit

 

History

History
46 lines (29 loc) · 1.73 KB

README.md

File metadata and controls

46 lines (29 loc) · 1.73 KB

Scala and sbt Dockerfile

Scala and sbt container.

Useful for building in environments like CircleCI v2.

Base Docker Image

Installation

  1. Install Docker
  2. Pull automated build from public Docker Hub Registry:
  3. See tags for built specific versions (not the latest ones)
docker pull gnames/scala-sbt-jdk

Alternatively, you can build an image from Dockerfile:

docker build -t scala-sbt-jdk github.com/gnames/scala-sbt-jdk

Or with specific versions:

docker build -t scala-sbt-jdk --build-arg SCALA_VERSION=2.12.1 --build-arg SBT-VERSION=0.13.15 github.com/gnames/scala-sbt-jdk

Usage

docker run -it --rm gnames/scala-sbt-jdk /bin/bash

Contribution policy

Contributions via GitHub pull requests are gladly accepted from their original author. Along with any pull requests, please state that the contribution is your original work and that you license the work to the project under the project's open source license. Whether or not you state this explicitly, by submitting any copyrighted material via pull request, email, or other means you agree to license the material under the project's open source license and warrant that you have the legal authority to do so.

License

This code is open source software licensed under the Apache 2.0 License.

This is forked repository with optimisations on top of original hseeberger/scala-sbt.