@cybermem/mcp 0.13.6 → 0.13.7

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.
Files changed (2) hide show
  1. package/Dockerfile +6 -6
  2. package/package.json +1 -1
package/Dockerfile CHANGED
@@ -1,7 +1,7 @@
1
1
  # Base stage
2
- FROM node:20-alpine AS base
2
+ FROM node:20-slim AS base
3
3
  WORKDIR /app
4
- RUN apk add --no-cache python3 make g++
4
+ RUN apt-get update && apt-get install -y --no-install-recommends python3 make g++ && rm -rf /var/lib/apt/lists/*
5
5
 
6
6
  # Build stage
7
7
  FROM base AS builder
@@ -12,14 +12,14 @@ RUN npm run build
12
12
  RUN npm prune --production
13
13
 
14
14
  # Native stage for sqlite3 bindings
15
- FROM node:20-alpine AS native-builder
16
- RUN apk update && apk add --no-cache python3 python3-dev make g++
15
+ FROM node:20-slim AS native-builder
16
+ RUN apt-get update && apt-get install -y --no-install-recommends python3 make g++ && rm -rf /var/lib/apt/lists/*
17
17
  WORKDIR /native
18
18
  RUN npm init -y && npm install sqlite3@5.1.7 sqlite@5.1.1
19
19
 
20
20
  # Runtime stage
21
- FROM node:20-alpine AS runner
22
- RUN apk add --no-cache libc6-compat
21
+ FROM node:20-slim AS runner
22
+ RUN apt-get update && apt-get install -y --no-install-recommends curl libc6 && rm -rf /var/lib/apt/lists/*
23
23
  WORKDIR /app
24
24
 
25
25
  # Copy built artifacts and deps
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cybermem/mcp",
3
- "version": "0.13.6",
3
+ "version": "0.13.7",
4
4
  "description": "CyberMem MCP Server - AI Memory with openmemory-js SDK",
5
5
  "main": "dist/index.js",
6
6
  "bin": {