This release adds 1 notable feature for engineering teams evaluating rollout.
✓ No known CVEs patched in this version
Summary
AI summaryCPU‑only PyTorch reduces Docker image size from ~8 GB to ~1 GB.
Full changelog
What's changed
Major: CPU-only PyTorch (image size ~8GB → ~1GB)
Root cause found: sentence-transformers depends on torch, which defaults to the full CUDA build — pulling in ~7GB of NVIDIA libraries (nvidia-cublas, nvidia-cudnn, nvidia-cuda-runtime, etc.). On a CPU-only server these are completely unused but:
- Caused "no space left on device" during layer export on 30GB disks
- Made layer export take 127s+ (compressing 8GB of
.sofiles) - Made the image too large for small VMs
Fix: The Dockerfile now installs torch + torchvision from the PyTorch CPU-only index before the main pip install. When sentence-transformers is installed afterward, it sees torch already satisfied and skips the CUDA variant.
| Metric | Before | After |
|--------|--------|-------|
| Image size | ~8 GB | ~1 GB |
| Layer export | 127s+ | ~10s |
| Disk needed | 20GB+ | 5GB |
| Build failures | Frequent on small VMs | None |
Also: more aggressive pre-build cleanup
build_image() now runs docker builder prune -af, docker image prune -af, and docker container prune -f before every build — ensuring maximum free space regardless of leftover state from prior builds.
How to upgrade
curl -sSL https://raw.githubusercontent.com/dl4rce/flaiwheel/v3.8.0/scripts/install.sh | bash
Weekly OSS security release digest.
The CVE patches and breaking changes that affected production tools this week. One email, every Sunday.
No spam, unsubscribe anytime.
Share this release
About dl4rce/flaiwheel
Self-hosted memory and governance layer for AI coding agents. 28 MCP tools with structured knowledge capture, hybrid search (semantic + BM25 + cross-encoder reranking), behavioral documentation nudges, cold-start codebase analyzer, and git-native storage. Single Docker container, zero cloud dependencies.
Related context
Beta — feedback welcome: [email protected]