Added release workflow#4
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 4485543f63
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
|
|
||
| ENV PORT=6060 | ||
|
|
||
| CMD ["node", "dist/server.js"] |
There was a problem hiding this comment.
Point Docker CMD to compiled server path
The image launches node dist/server.js, but the build step is plain tsc with outDir: dist and sources under src/, so the emitted entrypoint is dist/src/server.js rather than dist/server.js. In practice, containers built from this Dockerfile will exit on startup with a module-not-found error for /app/dist/server.js, making the released image unusable until the CMD points at the actual compiled file.
Useful? React with 👍 / 👎.
4485543 to
73999df
Compare
No description provided.