Skip to content

tianhao-au/docker-scala

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Base Docker Image for Scala

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages