Sign inSign up

ysihaoy/scala

By ysihaoy

Updated almost 9 years ago

Docker image for Scala and SBT with different version.

Image
2

3.5K

ysihaoy/scala repository overview

Scala Docker Image

Introduction

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

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 :-)

Tag summary

Content type

Image

Digest

Size

202.2 MB

Last updated

almost 9 years ago

docker pull ysihaoy/scala