Conversation
Adds a lightweight Docker image (node:22-alpine + npm install) for containerized MCP server usage. GHCR workflow auto-publishes on release. Unblocks Glama directory listing and Docker MCP Catalog submission. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 26b1df34ee
ℹ️ About Codex in GitHub
Codex has been enabled to automatically 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 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
| @@ -0,0 +1,4 @@ | |||
| FROM node:22-alpine | |||
| RUN npm install -g @transloadit/mcp-server@latest | |||
There was a problem hiding this comment.
Pin npm package version in Docker image build
The image always installs @transloadit/mcp-server@latest, so the binary inside the container is not tied to the GitHub release tag being published. If latest differs from the release version (for example, rerunning an older release workflow or any dist-tag drift), ghcr.io/transloadit/mcp-server:<release-version> will contain the wrong server code, which breaks version correctness and reproducibility for users pulling pinned image tags.
Useful? React with 👍 / 👎.
Summary
packages/mcp-server/Dockerfile— lightweight image usingnode:22-alpine+ npm install.github/workflows/docker-mcp.yml— auto-publishes toghcr.io/transloadit/mcp-serveron releaseWhy
Verified locally
🤖 Generated with Claude Code