Tidy
All checks were successful
dropshell-build / build (push) Successful in 36s

This commit is contained in:
Your Name
2025-06-12 21:29:00 +12:00
parent 4519f062b2
commit dbbef4fc0e
3 changed files with 27 additions and 8 deletions

View File

@ -13,11 +13,20 @@ This repository contains a Docker-based build system for creating statically-lin
## Key Commands
### Building the Base Image
For local testing (single architecture):
```bash
cd build-base
./build.sh
```
This creates the `gitea.jde.nz/public/dropshell-build-base:latest` Docker image with all dependencies.
This creates the `gitea.jde.nz/public/dropshell-build-base:latest` Docker image for your current architecture and loads it into Docker.
For multiarch build (without loading):
```bash
cd build-base
BUILD_MODE=multiarch ./build.sh
```
This builds for linux/amd64 and linux/arm64 but keeps the image in the buildx cache only.
### Building a Project
```bash