Skip to content

Latest commit

 

History

History
76 lines (57 loc) · 2.31 KB

README.md

File metadata and controls

76 lines (57 loc) · 2.31 KB

Scala Docker Image

Introduction

  1. Dockerhub: ysihaoy/scala
  2. Docker image for Scala and SBT project with different version combinations

Supported tags (combinations of Scala and SBT) and Dockerfile links

How to use in your Scala SBT project

  1. Sample of your minimal project structure
your-scala-project
│   build.sbt
│   Dockerfile
│
├───project
|       build.properties
|       plugins.sbt
|
└───src
    ├───main
    │   │   ...
    │
    └───test
  1. Sample of your Dockerfile should be like:
FROM ysihaoy/scala:2.12.4-sbt-1.0.4

# caching dependencies
COPY ["build.sbt", "/tmp/build/"]
COPY ["project/plugins.sbt", "project/build.properties", "/tmp/build/project/"]
RUN cd /tmp/build && \
  sbt compile && \
  sbt test:compile && \
  rm -rf /tmp/build

# copy source code
COPY . /root/app/
WORKDIR /root/app
RUN sbt compile && sbt test:compile

CMD ["sbt"]

Optimisation of the build

In order to have fast CI (continuous integration) build process, sample of your project/build.properties and build.sbt should be like:

  1. project/build.properties
sbt.version = 1.0.4
  1. build.sbt
scalaVersion := "2.12.4"

You are an awesome Scala developer :-)