The repository includes a Dockerfile for building goThoom in a reproducible environment.
./build-scripts/docker_dev_env.shThis builds an image tagged gothoom-build-env and compiles the binaries inside it.
docker create --name gothoom-build gothoom-build-env
mkdir -p dist
docker cp gothoom-build:/out ./dist
docker rm gothoom-buildThe built cross-platform binaries are now in dist/ on the host.