We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2757f8 commit 702e57cCopy full SHA for 702e57c
Dockerfile
@@ -1,6 +1,5 @@
1
-# Use Node 23 instead of 20
2
-FROM node:23.1.0
3
-
+# Use Node 22 instead of 20
+FROM node:22.11.0
4
5
# Install node-gyp and node-waf
6
RUN npm install -g node-gyp node-waf pnpm
@@ -45,11 +44,9 @@ COPY . .
45
44
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install -w
46
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --include=optional sharp -w
47
48
-# Clean node_modules before copying source
49
-RUN rm -rf packages/*/node_modules
50
51
# Build all packages
52
RUN pnpm build
+COPY . .
53
54
# Expose ports
55
EXPOSE 3000
0 commit comments