Container Images

Run Elide from prebuilt container images

Elide publishes Linux images for amd64 and arm64:

ImageEntrypointUse
elide.dev/elideelideRun a command directly.
elide.dev/bashbashOpen a shell with Elide on PATH.

The same images are available as ghcr.io/elide-dev/elide and ghcr.io/elide-dev/bash.

Run a command

docker run --rm elide.dev/elide --version

Mount a project and make it the working directory:

docker run --rm -v "$PWD":/work -w /work elide.dev/elide run app.js

Open a shell

docker run --rm -it elide.dev/bash

For reproducible builds, select a version or dated nightly tag shown on the elide and bash package pages instead of relying on a moving tag.