@cybermem/mcp 0.14.4 → 0.14.5
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 +6 -0
- package/Dockerfile +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/Dockerfile
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Base stage
|
|
2
|
-
FROM node:
|
|
2
|
+
FROM node:24-slim AS base
|
|
3
3
|
WORKDIR /app
|
|
4
4
|
RUN apt-get update && apt-get install -y --no-install-recommends python3 make g++ && rm -rf /var/lib/apt/lists/*
|
|
5
5
|
|
|
@@ -12,13 +12,13 @@ RUN npm run build
|
|
|
12
12
|
RUN npm prune --production
|
|
13
13
|
|
|
14
14
|
# Native stage for sqlite3 bindings
|
|
15
|
-
FROM node:
|
|
15
|
+
FROM node:24-slim AS native-builder
|
|
16
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:
|
|
21
|
+
FROM node:24-slim AS runner
|
|
22
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
|
|