From 37bd6ee8598866e7d828bbf37e108ce6aa0df07e Mon Sep 17 00:00:00 2001 From: gsxdsm Date: Mon, 17 Aug 2026 16:26:30 -0700 Subject: [PATCH] chore: add changeset for docker build and volume ownership fixes Co-Authored-By: Claude Opus 5 --- .changeset/fix-docker-build-and-volume-ownership.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .changeset/fix-docker-build-and-volume-ownership.md diff --git a/.changeset/fix-docker-build-and-volume-ownership.md b/.changeset/fix-docker-build-and-volume-ownership.md new file mode 100644 index 0000000000..1c50964614 --- /dev/null +++ b/.changeset/fix-docker-build-and-volume-ownership.md @@ -0,0 +1,7 @@ +--- +"@runfusion/fusion": patch +--- + +summary: Fix Docker image build failing on memory and first-run container startup failing on volume permissions. +category: fix +dev: Builder runs `pnpm build` with `NODE_OPTIONS=--max-old-space-size=6144` (dashboard vite build OOMed at V8's default old-space on a stock 8GB Docker Desktop VM, exit 134). Runner pre-creates `/home/node/.fusion` owned by `node` so a fresh named volume inherits ownership and embedded Postgres `initdb` succeeds; bind mounts still require a host-side `chown -R 1000:1000`. Also drops the dependency-graph plugin's stale `taskStuck` tsconfig path mapping.