@cybermem/mcp 0.8.7 → 0.9.0
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/Dockerfile +2 -1
- package/package.json +1 -1
package/Dockerfile
CHANGED
|
@@ -19,9 +19,10 @@ RUN npm run build
|
|
|
19
19
|
RUN npm prune --production
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
FROM node:
|
|
22
|
+
FROM node:20-alpine AS runner
|
|
23
23
|
|
|
24
24
|
WORKDIR /app
|
|
25
|
+
RUN apk add --no-cache libc6-compat
|
|
25
26
|
# Install runtime dependencies for native modules if needed (usually just glibc/musl compatibility, but better-sqlite3 bundles binaries or needs rebuild.
|
|
26
27
|
# We copy node_modules from builder so native addons should work if arc matches.
|
|
27
28
|
# For cross-platform (building amd64 on arm64 or vice versa), we might need QEMU or specific handling.
|