stack-orchestrator/app/data/container-build/cerc-builder-gerbil
2023-04-04 20:26:19 -06:00
..
Dockerfile Install gerbil packages globally not locally in the project directory 2023-01-28 18:56:43 +01:00
entrypoint.sh Add gerbil builder container 2023-01-22 21:50:50 -07:00
install-dependencies.sh Fail on error installing package 2023-04-04 20:26:19 -06:00
README.md Enhance readme 2023-01-23 07:24:27 -07:00

Gerbil Scheme Builder

This container is designed to be used as a simple "build runner" environment for building and running Scheme projects using Gerbil and gerbil-ethereum. Its primary purpose is to allow build/test/run of gerbil code without the need to install and configure all the necessary prerequisites and dependencies on the host system.

Usage

First build the container with:

$ laconic-so build-containers --include cerc/builder-gerbil

Now, assuming a gerbil project located at ~/projects/my-project, run bash in the container mounting the project with:

$ docker run -it -v $HOME/projects/my-project:/src cerc/builder-gerbil:latest bash
root@7c4124bb09e3:/src#

Now gerbil commands can be run.