Nim (formerly known as "Nimrod") is a statically typed, imperative programming language that tries to give the programmer ultimate power without compromises on runtime efficiency. This means it focuses on compile-time mechanisms in all their various forms.
Beneath a nice infix/indentation based syntax with a powerful (AST based, hygienic) macro system lies a semantic model that supports a soft realtime GC on thread local heaps. Asynchronous message passing is used between threads, so no "stop the world" mechanism is necessary. An unsafe shared memory heap is also provided for the increased efficiency that results from that model.
Image tags indicate Nim versions. The latest stable version is additionally tagged with latest
, the latest development version—with devel
.
Images come in three flavors: regular, slim, and onbuild. Regular images include the Nim compiler and Nimble package manager. Slim images include only the compiler. Onbuild images are meant to be used in Dockerfiles for Nimble packages because they invoke nimble build
on build.
Tag | Dockerfile |
---|---|
0.14.3 , devel |
0.14.3/Dockerfile |
0.14.2 , latest |
0.14.2/Dockerfile |
0.14.0 |
0.14.0/Dockerfile |
0.13.0 |
0.13.0/Dockerfile |
Tag | Dockerfile |
---|---|
0.14.3-alpine-slim |
0.14.3/alpine/slim/Dockerfile |
0.14.3-slim |
0.14.3/slim/Dockerfile |
0.14.2-slim |
0.14.2/slim/Dockerfile |
0.14.0-slim |
0.14.0/slim/Dockerfile |
0.13.0-slim |
0.13.0/slim/Dockerfile |
0.12.0-slim |
0.12.0/slim/Dockerfile |
0.11.2-slim |
0.11.2/slim/Dockerfile |
0.11.0-slim |
0.11.0/slim/Dockerfile |
Tag | Dockerfile |
---|---|
0.14.3-alpine |
0.14.3/alpine/Dockerfile |
0.12.0-alpine |
0.12.0/alpine/Dockerfile |
0.11.2-alpine |
0.11.2/alpine/Dockerfile |
0.11.0-alpine |
0.11.0/alpine/Dockerfile |
Tag | Dockerfile |
---|---|
0.14.3-alpine-onbuild |
0.14.3/alpine/onbuild/Dockerfile |
0.14.3-onbuild |
0.14.3/onbuild/Dockerfile |
0.14.2-onbuild |
0.14.2/onbuild/Dockerfile |
0.14.0-onbuild |
0.14.0/onbuild/Dockerfile |
0.13.0-onbuild |
0.13.0/onbuild/Dockerfile |
Stable:
$ docker pull nimlang/nim
Development:
$ docker pull nimlang/nim:devel
$ docker run -it --rm --name my-running-app -v `pwd`:/usr/src/myapp -w /usr/src/myapp nimlang/nim nim c -r your-nim-file.nim
$ docker run -it --rm --name my-running-app -v `pwd`:/usr/src/myapp -w /usr/src/myapp nimlang/nim:0.14.3-alpine nim c --passL:-static your-nim-file.nim
Create a Dockerfile in the package root:
FROM nimlang/nim:0.14.2-onbuild
ENTRYPOINT ["./your-compiled-app-binary"]
Build your image and run the compiled binary:
$ docker build -t my-nim-app .
$ docker run -it --rm --name my-running-app my-nim-app