File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # Dependencies
2- node_modules /
3-
4- # Next.js
5- .next /
6- out /
7-
8- # Production
9- build /
10- dist /
11-
12- # Misc
13- .DS_Store
14- * .pem
15- .env * .local
16- .env.production
17-
18- # npm (project uses pnpm)
19- package-lock.json
20-
21- # Debug
22- npm-debug.log *
23- yarn-debug.log *
24- yarn-error.log *
25-
26- # Vercel
27- .vercel
28-
29- # TypeScript
30- * .tsbuildinfo
31- next-env.d.ts
32- .env
33- .data /
34- aegis /
35-
36- # Playwright
37- test-results /
38- playwright-report /
39- .tmp /
40- .playwright-mcp /
41-
42- # Local QA screenshots
43- /e2e-debug- * .png
44- /e2e-channels- * .png
45- docs /_ * .png
46-
47- # Claude Code context files (root CLAUDE.md is committed for AI agent discovery)
48- ** /CLAUDE.md
49- ! /CLAUDE.md
1+ # Dependencies
2+ node_modules /
3+
4+ # Next.js
5+ .next /
6+ out /
7+
8+ # Production
9+ build /
10+ dist /
11+
12+ # Misc
13+ .DS_Store
14+ * .pem
15+ .env * .local
16+
17+ # npm (project uses pnpm)
18+ package-lock.json
19+
20+ # Debug
21+ npm-debug.log *
22+ yarn-debug.log *
23+ yarn-error.log *
24+
25+ # Vercel
26+ .vercel
27+
28+ # TypeScript
29+ * .tsbuildinfo
30+ next-env.d.ts
31+ .data /
32+ aegis /
33+
34+ # Playwright
35+ test-results /
36+ playwright-report /
37+ .tmp /
38+ .playwright-mcp /
39+
40+ # Local QA screenshots
41+ /e2e-debug- * .png
42+ /e2e-channels- * .png
43+ docs /_ * .png
44+
45+ # Claude Code context files (root CLAUDE.md is committed for AI agent discovery)
46+ ** /CLAUDE.md
47+ ! /CLAUDE.md
48+ config.bat
Original file line number Diff line number Diff line change 1- FROM node:22.22 .0-slim AS base
1+ FROM node:26.3 .0-slim AS base
22# Pin pnpm to v10 to match CI and package.json#packageManager. pnpm 11 turns
33# ERR_PNPM_IGNORED_BUILDS into a hard error, breaking fresh Docker builds.
44RUN corepack enable && corepack prepare pnpm@10.29.3 --activate
@@ -49,7 +49,7 @@ ENV NEXT_PUBLIC_GOOGLE_CLIENT_ID=${NEXT_PUBLIC_GOOGLE_CLIENT_ID}
4949
5050RUN pnpm build
5151
52- FROM node:22.22 .0-slim AS runtime
52+ FROM node:26.3 .0-slim AS runtime
5353
5454ARG MC_VERSION=dev
5555LABEL org.opencontainers.image.source="https://github.com/builderz-labs/mission-control"
You can’t perform that action at this time.
0 commit comments