Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 520 Bytes

File metadata and controls

22 lines (15 loc) · 520 Bytes

Building with Docker

The repository includes a Dockerfile for building goThoom in a reproducible environment.

Build the image and binaries

./build-scripts/docker_dev_env.sh

This builds an image tagged gothoom-build-env and compiles the binaries inside it.

Extract the build artifacts

docker create --name gothoom-build gothoom-build-env
mkdir -p dist
docker cp gothoom-build:/out ./dist
docker rm gothoom-build

The built cross-platform binaries are now in dist/ on the host.