|
|
2 months ago | |
|---|---|---|
| .. | ||
| base | f41e3465d9 ci: add container build workflow | 2 months ago |
| bun-node | 3ad7a18989 ci | 2 months ago |
| publish | f41e3465d9 ci: add container build workflow | 2 months ago |
| rust | f41e3465d9 ci: add container build workflow | 2 months ago |
| script | 3ad7a18989 ci | 2 months ago |
| tauri-linux | f41e3465d9 ci: add container build workflow | 2 months ago |
| README.md | 3ad7a18989 ci | 2 months ago |
| tsconfig.json | f41e3465d9 ci: add container build workflow | 2 months ago |
Prebuilt images intended to speed up GitHub Actions jobs by baking in
large, slow-to-install dependencies. These are designed for Linux jobs
that can use job.container in workflows.
Images
base: Ubuntu 24.04 with common build tools and utilitiesbun-node: base plus Bun and Node.js 24rust: bun-node plus Rust (stable, minimal profile)tauri-linux: rust plus Tauri Linux build dependenciespublish: bun-node plus Docker CLI and AUR toolingBuild
REGISTRY=ghcr.io/anomalyco TAG=24.04 bun ./packages/containers/script/build.ts
REGISTRY=ghcr.io/anomalyco TAG=24.04 bun ./packages/containers/script/build.ts --push
Workflow usage
jobs:
build-cli:
runs-on: ubuntu-latest
container:
image: ghcr.io/anomalyco/build/bun-node:24.04
Notes
--push publishes multi-arch (amd64 + arm64) images using Buildx.docker-in-docker with privileged mode).