We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0eaf53 commit f03e51bCopy full SHA for f03e51b
1 file changed
Dockerfile
@@ -1,12 +1,13 @@
1
-ARG NODE_VERSION=23.5.0
+ARG NODE_VERSION=22.7.0
2
3
# Create build stage
4
FROM node:${NODE_VERSION}-slim AS build
5
6
-# Enable and prepare pnpm with a known good version
+# Enable pnpm
7
ENV PNPM_HOME="/pnpm"
8
ENV PATH="$PNPM_HOME:$PATH"
9
-RUN corepack prepare pnpm@8.6.0 --activate
+RUN corepack enable
10
+RUN corepack prepare pnpm@9.15.2 --activate
11
12
# Set the working directory inside the container
13
WORKDIR /app
@@ -32,4 +33,4 @@ COPY --from=build /app/.output ./
32
33
EXPOSE 3000
34
35
# Start the application
-CMD ["node","/app/server/index.mjs"]
36
+CMD ["node","/app/server/index.mjs"]
0 commit comments