Build and push runner images / build-runners (push) Failing after 17s
- All runners now based on code.forgejo.org/forgejo/runner:6 (has runner binary) - Dockerfile adds Node.js + specialized tools (Go, Rust, docker) - CI workflow will build custom images and push to registry - Image Updater will auto-detect and update values.yaml - ArgoCD will sync new custom images when available
5 lines
148 B
Docker
5 lines
148 B
Docker
FROM code.forgejo.org/forgejo/runner:6
|
|
|
|
# Node.js is already in forgejo/runner, just verify
|
|
RUN node --version && docker --version && git --version
|