Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/docker-hub-frolvlad/docker-alpine-scala
- Owner: Docker-Hub-frolvlad
- License: mit
- Created: 2015-11-13T05:00:39.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-02-02T21:44:51.000Z (almost 6 years ago)
- Last Synced: 2024-04-20T20:54:26.094Z (7 months ago)
- Topics: alpine, docker-image, java-8, scala
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/frolvlad/alpine-scala/
- Size: 6.84 KB
- Stars: 22
- Watchers: 4
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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!