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 +7 -0
- package/Dockerfile +5 -3
- package/package.json +1 -1
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
|
-
#
|
|
36
|
-
|
|
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