chore: trim repo to store-only, remove carried-over monorepo build contexts#23
Merged
Conversation
…ntexts The repo was carved from the monorepo docker/ aggregator and still carried every other image's build context. Now that store is a standalone, payment-oblivious POST /store backend behind the connector (#19), trim to just the store image: - Delete 11 non-store Dockerfiles (akash-*, mill, town, townhouse-api, nix, oyster, sdk-e2e, toon-client, agent-runtime-patched), docker-compose-oyster.yml, supervisord.conf, and the configs/, dev-fixtures/, akash-ator-probe/, townhouse-ator-sidecar/ build-context dirs. - Delete the non-store src entrypoints + helpers (entrypoint-{sdk,toon-client, toon-client-helpers,town,townhouse-api}, attestation-server, shared) and their tests. The store path (entrypoint-store.ts -> store-backend.ts) imports none of them. - esbuild.config.mjs: build only src/entrypoint-store.ts. - package.json: point main/start at dist/entrypoint-store.js; drop unused @types/dockerode devDep; refresh description. pnpm-lock.yaml regenerated (dockerode types only) so --frozen-lockfile stays valid. - README: mark the trim-to-store-only follow-up done. Supersedes the stale #9 (which predated the dvm->store rename + pnpm lockfile). Verified: pnpm build -> dist/entrypoint-store.js only; 22/22 tests pass. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This was referenced Jun 26, 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.
Re-does the trim that closed-stale #9 attempted, against current
main(post dvm→store rename #19 and the pnpm-lock/Dockerfile.store fixes #16/#18). #9 was unsalvageable: it targeted the now-renamedentrypoint-dvm.tsand added apackage-lock.jsonagainst main's committedpnpm-lock.yaml.What this removes
The repo was carved from the monorepo
docker/aggregator and still carried every other image's build context. Now that store is a standalone payment-obliviousPOST /storebackend behind the connector (#19), this trims to just the store image:Dockerfile.{agent-runtime-patched,akash-anvil,akash-solana,akash-solana-explorer,mill,nix,oyster,sdk-e2e,toon-client,town,townhouse-api}— plusdocker-compose-oyster.yml,supervisord.conf.configs/,dev-fixtures/,akash-ator-probe/,townhouse-ator-sidecar/.src/entrypoints + helpers + tests —entrypoint-{sdk,toon-client,toon-client-helpers,town,townhouse-api},attestation-server,shared. The store path (entrypoint-store.ts→store-backend.ts) imports none of them (verified via import graph).Config touch-ups
esbuild.config.mjs: build onlysrc/entrypoint-store.ts(the other two entryPoints are now deleted).package.json:main/start→dist/entrypoint-store.js; drop unused@types/dockerode; refresh description.pnpm-lock.yaml: regenerated — dockerode types only (34 lines removed, 0 added) so--frozen-lockfilestays valid.README.md: the "Trim to store-only" follow-up is now marked done.Scope note (deferred)
Only
@types/dockerodewas removed from deps. The heavier runtime deps (arweave,@ardrive/turbo-sdk,better-sqlite3, fastify/noble/solana externals, etc.) are part of the connector/sdk runtime closure thatDockerfile.storecherry-picks from the pnpm hoist trees, so a deeper dep prune needs a fulldocker buildto validate and is intentionally left out of this PR.Verification
🤖 Generated with Claude Code