Note - this method is still in testing!
- Install Docker on your computer (see instructions for different architectures in the Docker docs)
- Build the docker image:
docker build ./docker -t llmsvs-builder
- Change directory to the target version. E.g
cd 0.1
- Optionally perform a clean with
docker run -it --rm -v "$(pwd):/data" llmsvs-builder clean
- Build the PDF with
docker run -it --rm -v "$(pwd):/data" llmsvs-builder pdf
- The PDF will be located within the
TARGET_VERSION/dist
directory