fix(docker): correct CMD paths for service builds

- backend: node services/backend/dist/index.js (not dist/index.js)
- discord-gateway: node services/discord-gateway/dist/index.js
- frontend: pnpm --filter preview instead of root dev:web (missing frontend/ dir)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
MythEclipse
2026-06-01 22:42:45 +07:00
co-authored by Claude Opus 4.6
parent bf5849f235
commit a9fa22262e
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -37,5 +37,5 @@ RUN pnpm --filter './services/frontend' run build
# Expose port (served by backend)
EXPOSE 3000
# Start development server
CMD ["pnpm", "run", "dev:web"]
# Start frontend (production preview)
CMD ["pnpm", "--filter", "./services/frontend", "run", "preview", "--", "--host", "0.0.0.0"]