Bundle required runtimes in Docker image (Rust + Python + Node)#281
Open
zvictor wants to merge 1 commit intoRightNow-AI:mainfrom
Open
Bundle required runtimes in Docker image (Rust + Python + Node)#281zvictor wants to merge 1 commit intoRightNow-AI:mainfrom
zvictor wants to merge 1 commit intoRightNow-AI:mainfrom
Conversation
Author
|
Currently, running ● OpenFang Doctor
✔ OpenFang directory: /data
✔ .env file (permissions OK)
✔ Config file: /data/config.toml
- Daemon not running (start with `openfang start`)
- Port 0.0.0.0:4200 is in use by another process
✔ Database file (valid SQLite)
✔ Disk space: 33173MB available
✔ Agent manifests are valid
...
Extensions:
✔ Available integration templates: 25
✔ Installed integrations: 0
✘ Rust toolchain not found
- Python not found (needed for Python skill runtime)
- Node.js not found (needed for Node skill runtime)
✘ Some checks failed.
hint: Run `openfang doctor --repair` to attempt auto-fix |
egargale
pushed a commit
to egargale/openfang
that referenced
this pull request
Mar 5, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
openfang doctorreports missing Rust/Python/Node in the current runtime image, which prevents Python/Node skill execution out of the box. This PR updates the Dockerfile so the final container includes the runtimes/toolchain OpenFang expects at runtime, while keeping the build stage unchanged.Changes
debian:bookworm-slimtorust:1-slim-bookwormto include the Rust toolchain in the runtime image.python3,python3-pip,python3-venv.nodejs,npm.openfangbinary +agents, expose4200, mount/data, and runopenfang start.Rationale
doctor --repairor manual provisioning in derived images.