sbt - interactive build tool for Scala and more
100K+
sbt is an interactive build tool for Scala and more.
The source for this container is available at https://github.com/eed3si9n/docker-sbt
For AdoptOpenJDK JDK 8:
docker pull eed3si9n/sbt:jdk8-alpine
docker run -it --mount src="$(pwd)",target=/opt/workspace,type=bind eed3si9n/sbt:jdk8-alpine
To use /bin/bash as the entry point (for console task etc):
docker run --entrypoint "/bin/bash" -it --mount src="$(pwd)",target=/opt/workspace,type=bind eed3si9n/sbt:jdk8-alpine
For AdoptOpenJDK JDK 11:
docker pull eed3si9n/sbt:jdk11-alpine
docker run -it --mount src="$(pwd)",target=/opt/workspace,type=bind eed3si9n/sbt:jdk11-alpine
This will start a shell inside Alpine Linux as a non-root user who has access to /opt/workspace mapped to the current directory of the host machine, and sbt installed.
Content type
Image
Digest
Size
268 MB
Last updated
over 5 years ago
docker pull eed3si9n/sbt