Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/docker-hub-frolvlad/docker-alpine-scala

Small Docker image with Scala based on OracleJDK 8 (191MB)
https://github.com/docker-hub-frolvlad/docker-alpine-scala

alpine docker-image java-8 scala

Last synced: about 5 hours ago
JSON representation

Small Docker image with Scala based on OracleJDK 8 (191MB)

Awesome Lists containing this project

README

        

[![Docker Stars](https://img.shields.io/docker/stars/frolvlad/alpine-scala.svg?style=flat-square)](https://hub.docker.com/r/frolvlad/alpine-scala/)
[![Docker Pulls](https://img.shields.io/docker/pulls/frolvlad/alpine-scala.svg?style=flat-square)](https://hub.docker.com/r/frolvlad/alpine-scala/)

Scala Docker image
==================

This image is based on Alpine Linux image, which is only a 5MB image, and contains
[Scala](http://www.scala-lang.org/) based on Oracle JDK 8
[`frolvlad/alpine-oraclejdk8` slim image](https://hub.docker.com/r/frolvlad/alpine-oraclejdk8/).

Download size of this image is only:

[![](https://images.microbadger.com/badges/image/frolvlad/alpine-scala.svg)](http://microbadger.com/images/frolvlad/alpine-scala "Get your own image badge on microbadger.com")

Usage Example
-------------

```bash
$ docker run --rm frolvlad/alpine-scala scala -e 'object HelloWorld extends App { println("Hello World") }; HelloWorld.main(null)'
```

Once you have run this command you will get printed 'Hello World' from Scala!