Containerfile: point CMD at d11_server.ts after v2-Sorted rename
The Layer 3 server bootstrap moved from c11_server.ts → d11_server.ts in the previous commit. The Containerfile CMD still pointed at the old path, so the container failed to start with 'Module not found'. Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]>
1 file changed · +1 −1
Containerfile
+1
−1
| @@ -25,4 +25,4 @@ EXPOSE 3000 | ||
| 25 | 25 | # external probes (cloudflared upstream + the deploy script's /healthz |
| 26 | 26 | # poll) already cover liveness. |
| 27 | 27 | |
| 28 | -CMD ["bun", "src/c11_server.ts"] | |
| 28 | +CMD ["bun", "src/d11_server.ts"] | |