Docker image for Gleam
Gleam is a statically typed functional programming language for building scalable concurrent systems. It compiles to Erlang and has straightforward interop with other BEAM languages such as Erlang, Elixir and LFE.
This image also has Elixir installed, so it can be used for joint Elixir/Gleam project and for projects managed with mix.
docker run --rm gleamlang/gleam gleam --version
docker run --rm -v "$PWD":/opt/app -w /opt/app gleamlang/gleam gleam new my_app
Build the image.
docker build -t gleamlang/gleam:<tag> .
Publish the image.
docker push gleamlang/gleam:<tag>