PR #554 extracted serve-static.ts as a sibling of server.ts, but the journal Dockerfile copies runtime source files explicitly by name and the COPY list was never updated. The runtime runs `node server.ts`, whose `import "./serve-static.ts"` then fails with ERR_MODULE_NOT_FOUND, crash-looping both the production and staging journals (they share the image). Caddy stayed up with no upstream, so the site hung. Add the missing COPY line. serve-static.ts imports only node: builtins, so this single file restores startup. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| app | ||
| public | ||
| .env.example | ||
| Dockerfile | ||
| package.json | ||
| react-router.config.ts | ||
| serve-static.test.ts | ||
| serve-static.ts | ||
| server.ts | ||
| tsconfig.json | ||
| vite.config.ts | ||
| vitest.config.ts | ||