File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed
Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 2121 - name : Setup pnpm
2222 uses : pnpm/action-setup@v4
2323 with :
24- version : 10
24+ version : 10.13.1
2525
2626 - name : Setup Node.js
2727 uses : actions/setup-node@v4
Original file line number Diff line number Diff line change @@ -6,10 +6,9 @@ FROM node:22-alpine AS build
66# Set working directory
77WORKDIR /app
88
9- # Install pnpm version 10
109# Enable corepack and activate pnpm
1110RUN corepack enable
12- RUN corepack prepare pnpm@10 --activate
11+ RUN corepack prepare pnpm@10.13.1 --activate
1312
1413# Copy package.json and pnpm-lock.yaml
1514COPY package.json pnpm-lock.yaml ./
@@ -34,7 +33,7 @@ WORKDIR /app
3433
3534# Enable corepack and activate pnpm in production stage
3635RUN corepack enable
37- RUN corepack prepare pnpm@10 --activate
36+ RUN corepack prepare pnpm@10.13.1 --activate
3837
3938# Copy the built output from the build stage
4039COPY --from=build /app/.output ./.output
Original file line number Diff line number Diff line change 3939 ],
4040 "engines" : {
4141 "node" : " ~22" ,
42- "pnpm" : " ~10"
42+ "pnpm" : " ~10.13.1 "
4343 },
4444 "scripts" : {
4545 "build" : " nuxt build" ,
You can’t perform that action at this time.
0 commit comments