You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds Node.js 22 and bundled npm to the TrueForge Daytona sandbox image.
The sandbox currently uses python:3.13-slim-bookworm and does not include Node.js/npm. This change adds Node.js 22 through NodeSource while preserving the existing Python 3.13 base and sandbox tooling.
Changes
Add Node.js 22 LTS installation via NodeSource.
Install the bundled npm runtime.
Validate node --version and npm --version during image build.
Keep python:3.13-slim-bookworm as the base image.
No changes to Helm, NATS, supervisord, ENTRYPOINT, or sandboxImage.json.
How was this tested?
The modified sandbox image was built and validated in an isolated environment.
Validated runtime:
Python 3.13.15
Node.js v22.23.2
npm 10.9.8
Git 2.39.5
ripgrep 13.0.0
supervisord 4.2.5
NATS configuration and the existing sandbox entrypoint were also verified as present.
The full TrueForge test suite was not run successfully in the validation environment, so this PR does not claim that the complete project test suite passes locally.
No hand-edits to generated code (packages/trueforge-sdk, .github/fern/openapi/openapi.json, docs/openapi.json)
Docs / .env.example updated if configuration or behaviour changed
Note
Low Risk
Scope is limited to the sandbox container build; no application auth, API, or runtime logic changes in this diff.
Overview
The TrueForge Daytona sandbox Docker image now ships Node.js 22 LTS and npm, installed via NodeSource during the existing apt-get layer on the unchanged python:3.13-slim-bookworm base.
The build runs node --version and npm --version so a broken install fails the image build. Helm, NATS, supervisord, and other sandbox packages are untouched.
Reviewed by Cursor Bugbot for commit ff48d20. Bugbot is set up for automated code reviews on this repo. Configure here.
Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.
This PR includes no changesets
When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types
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
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
Adds Node.js 22 and bundled npm to the TrueForge Daytona sandbox image.
The sandbox currently uses
python:3.13-slim-bookwormand does not include Node.js/npm. This change adds Node.js 22 through NodeSource while preserving the existing Python 3.13 base and sandbox tooling.Changes
node --versionandnpm --versionduring image build.python:3.13-slim-bookwormas the base image.sandboxImage.json.How was this tested?
The modified sandbox image was built and validated in an isolated environment.
Validated runtime:
NATS configuration and the existing sandbox entrypoint were also verified as present.
The full TrueForge test suite was not run successfully in the validation environment, so this PR does not claim that the complete project test suite passes locally.
Checklist
pnpm build,pnpm test,pnpm typecheck,pnpm lint:ci, andpnpm format:checkpass locallypackages/trueforge-sdk,.github/fern/openapi/openapi.json,docs/openapi.json).env.exampleupdated if configuration or behaviour changedNote
Low Risk
Scope is limited to the sandbox container build; no application auth, API, or runtime logic changes in this diff.
Overview
The TrueForge Daytona sandbox Docker image now ships Node.js 22 LTS and npm, installed via NodeSource during the existing
apt-getlayer on the unchangedpython:3.13-slim-bookwormbase.The build runs
node --versionandnpm --versionso a broken install fails the image build. Helm, NATS, supervisord, and other sandbox packages are untouched.Reviewed by Cursor Bugbot for commit ff48d20. Bugbot is set up for automated code reviews on this repo. Configure here.