### Run Kres via Docker for initial setup Source: https://github.com/siderolabs/kres/blob/main/README.md This command executes Kres within a Docker container, mounting the current working directory as the source and passing the GITHUB_TOKEN environment variable. It is specifically intended for the first-time setup of build instructions for a project. ```Shell docker run --rm -v ${PWD}:/src -w /src -e GITHUB_TOKEN ghcr.io/siderolabs/kres:latest ``` -------------------------------- ### Update Kres build instructions using make Source: https://github.com/siderolabs/kres/blob/main/README.md After the initial setup, this command utilizes the generated Makefile to re-run Kres. This ensures that the build instructions are updated and remain current with any changes in the project's structure. ```Shell make rekres ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.