mcp-rubber-duck 1.2.3 → 1.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.2.4](https://github.com/nesquikm/mcp-rubber-duck/compare/v1.2.3...v1.2.4) (2025-11-17)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * avoid npm ci on ARM64 by copying node_modules from builder ([b5a9777](https://github.com/nesquikm/mcp-rubber-duck/commit/b5a977772c44a138dc65554e8f2448be63fb0976))
7
+
1
8
  ## [1.2.3](https://github.com/nesquikm/mcp-rubber-duck/compare/v1.2.2...v1.2.3) (2025-11-17)
2
9
 
3
10
 
package/Dockerfile CHANGED
@@ -32,13 +32,15 @@ WORKDIR /app
32
32
  # Copy package files
33
33
  COPY package*.json ./
34
34
 
35
- # Install production dependencies only
36
- RUN npm ci --only=production && \
37
- npm cache clean --force
35
+ # Copy production node_modules from builder (avoids npm ci issues with QEMU)
36
+ COPY --from=builder /app/node_modules ./node_modules
38
37
 
39
38
  # Copy built application from builder
40
39
  COPY --from=builder /app/dist ./dist
41
40
 
41
+ # Remove dev dependencies to reduce image size
42
+ RUN npm prune --production
43
+
42
44
  # Copy configuration examples
43
45
  COPY config/config.example.json ./config/
44
46
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-rubber-duck",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "description": "An MCP server that bridges to multiple OpenAI-compatible LLMs - your AI rubber duck debugging panel",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",