Skip to content

Commit d019a79

Browse files
ryan-williamsclaude
andcommitted
www: regen .dockerignore to include v3 files + region-cell assets
`.dockerignore` is an allowlist of git-tracked files generated by `make-dockerignore.py -G`. The screenshot Docker image (built via `Dockerfile.screenshots`) only sees files `!`-d back in here. Recently landed but missing from the allowlist: - `src/pages/HomeV2.tsx` (3febd3d), `src/pages/CellsDebug.tsx` (6b75bf8) — both imported from `src/main.tsx`, so missing them caused `pnpm build` in Docker to fail with "Could not resolve './pages/HomeV2'" — which broke the screenshot step and gated the GH Pages deploy. - `src/query/ridesV1.ts` (f71499e) — also imported by `HomeV2`. - `public/assets/region-cells{,-s2}.json` + `stations-regional.json` — runtime-fetched assets; not bundled, but the screenshot run fetches them at runtime so it needs them in the image. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent bd25c8b commit d019a79

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

www/.dockerignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,12 @@
2424
!public/assets/dag.json
2525
!public/assets/gh.png
2626
!public/assets/index.css
27+
!public/assets/region-cells-s2.json
28+
!public/assets/region-cells.json
2729
!public/assets/s3.png
2830
!public/assets/station-births.json
2931
!public/assets/station-urls.json
32+
!public/assets/stations-regional.json
3033
!public/assets/twitter.png
3134
!public/assets/warning.png
3235
!public/assets/ymrgtb_cd.json
@@ -155,14 +158,17 @@
155158
!src/index.module.css
156159
!src/main.tsx
157160
!src/mdx.d.ts
161+
!src/pages/CellsDebug.tsx
158162
!src/pages/Files.tsx
159163
!src/pages/Health.tsx
160164
!src/pages/Home.tsx
165+
!src/pages/HomeV2.tsx
161166
!src/pages/Pipeline.mdx
162167
!src/pages/StationDetail.tsx
163168
!src/pages/Stations.tsx
164169
!src/query/client.ts
165170
!src/query/ridesTable.ts
171+
!src/query/ridesV1.ts
166172
!src/query/rollups.ts
167173
!src/query/stations.ts
168174
!src/stations.module.css

0 commit comments

Comments
 (0)