Refactor to Self-Hosted Dagger Platform & Upstream Updates#234
Open
KHAEntertainment wants to merge 5 commits intovercel-labs:mainfrom
Open
Refactor to Self-Hosted Dagger Platform & Upstream Updates#234KHAEntertainment wants to merge 5 commits intovercel-labs:mainfrom
KHAEntertainment wants to merge 5 commits intovercel-labs:mainfrom
Conversation
Provide reproducible Nixpacks build with pnpm, cache store, and start binding to 0.0.0.0 using $PORT for Dokploy.
…ld-pack-for-dokploy-deployment-9804 Create nixpack build pack for dokploy deployment
Sync with Origin
Two upstream changes broke the Nixpacks build on Dokploy: 1. NODE_ENV=production was set globally, causing pnpm to skip devDependencies during install. The build needs TypeScript, Tailwind, eslint-config-next, etc. which live in devDependencies. 2. The upstream added "prepare": "husky" to package.json. Husky's prepare hook fails in Nixpacks build containers which lack a proper git hooks environment. Fix: remove NODE_ENV from global variables (devDeps now install correctly), add HUSKY=0 to suppress the prepare hook, and move NODE_ENV=production to only the start command where it matters. https://claude.ai/code/session_01UexnxJf2naqbNGnaMn7NUs
…JBZ2l fix: restore Nixpacks build compatibility after upstream sync
Contributor
|
@KHAEntertainment is attempting to deploy a commit to the Vercel Labs Team on Vercel. A member of the Team first needs to authorize it. |
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.
PR Description: Refactor to Self-Hosted Dagger Platform & Upstream Updates
This PR completes the refactor of the coding agent platform, replacing Vercel proprietary infrastructure with a self-hosted Dagger container system.
Key Changes:
lib/dagger/).README.mdto reflect the de-Vercel'd, self-hosted nature of the project.Dockerfile,nixpacks.toml, and updateddocker-compose.ymlfor easy self-hosting (supports Docker, Dokploy, etc.).create-web-cli-agentsCLI package inpackages/to allow users to scaffold their own instances of the platform.