@cybermem/dashboard 0.14.4 → 0.14.6
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 +12 -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 for both dev and prod
|
|
2
|
-
FROM node:
|
|
2
|
+
FROM node:24-alpine AS base
|
|
3
3
|
WORKDIR /app
|
|
4
4
|
|
|
5
5
|
# Use corepack to get the pnpm version from the lockfile and speed up installs via cache
|
|
@@ -27,13 +27,13 @@ RUN --mount=type=cache,target=/root/.pnpm-store \
|
|
|
27
27
|
pnpm build
|
|
28
28
|
|
|
29
29
|
# Native stage for sqlite3 bindings and wrapper
|
|
30
|
-
FROM node:
|
|
30
|
+
FROM node:24-alpine AS native-builder
|
|
31
31
|
RUN apk update && apk add --no-cache python3 python3-dev make g++
|
|
32
32
|
WORKDIR /native
|
|
33
33
|
RUN npm init -y && npm install sqlite3@5.1.7 sqlite@5.1.1
|
|
34
34
|
|
|
35
35
|
# Production stage
|
|
36
|
-
FROM node:
|
|
36
|
+
FROM node:24-alpine AS production
|
|
37
37
|
RUN apk add --no-cache libc6-compat
|
|
38
38
|
WORKDIR /app
|
|
39
39
|
|