Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/docker-hub-frolvlad/docker-alpine-nim
The smallest Docker image with Nim programming language (~164MB)
https://github.com/docker-hub-frolvlad/docker-alpine-nim
alpine docker-machine nim
Last synced: 15 days ago
JSON representation
The smallest Docker image with Nim programming language (~164MB)
- Host: GitHub
- URL: https://github.com/docker-hub-frolvlad/docker-alpine-nim
- Owner: Docker-Hub-frolvlad
- License: mit
- Created: 2015-10-31T04:57:02.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-01-07T13:21:37.000Z (about 1 year ago)
- Last Synced: 2024-11-15T20:17:43.781Z (3 months ago)
- Topics: alpine, docker-machine, nim
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/frolvlad/alpine-nim/
- Size: 12.7 KB
- Stars: 8
- Watchers: 5
- Forks: 2
- 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-nim.svg?style=flat-square)](https://hub.docker.com/r/frolvlad/alpine-nim/)
[![Docker Pulls](https://img.shields.io/docker/pulls/frolvlad/alpine-nim.svg?style=flat-square)](https://hub.docker.com/r/frolvlad/alpine-nim/)Nim Docker image
================This image is based on Alpine Linux image, which is only a 5MB image, and contains
[Nim programming language](http://nim-lang.org).Download size of this image is only:
[![](https://images.microbadger.com/badges/image/frolvlad/alpine-nim.svg)](http://microbadger.com/images/frolvlad/alpine-nim "Get your own image badge on microbadger.com")
Usage Example
-------------```bash
$ docker run --rm frolvlad/alpine-nim sh -c "echo 'echo("'"Hello World"'")' >hello.nim && nim compile --run hello.nim"
```Once you have run this command you will get printed 'Hello World' from Nim!
NOTE: `nimble` is also available in this image.