Skip to content

Commit cf3218b

Browse files
committed
Build fix
1 parent 65bb8b7 commit cf3218b

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ WORKDIR /usr/src/app
55

66
# ---- Dependencies Stage ----
77
FROM base AS deps
8-
RUN npm install -g pnpm
8+
RUN npm install -g pnpm@10.33.2
99
COPY package.json pnpm-lock.yaml ./
1010
RUN pnpm install --frozen-lockfile
1111

package.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"private": true,
55
"description": "Topcoder Billing Accounts & Clients API (NestJS + Prisma, CommonJS)",
66
"main": "dist/main.js",
7+
"packageManager": "pnpm@10.33.2",
78
"type": "commonjs",
89
"scripts": {
910
"build": "prisma generate && nest build",
@@ -61,7 +62,14 @@
6162
},
6263
"pnpm": {
6364
"onlyBuiltDependencies": [
64-
"@prisma/client"
65+
"@prisma/client",
66+
"@prisma/engines",
67+
"prisma"
68+
],
69+
"ignoredBuiltDependencies": [
70+
"@nestjs/core",
71+
"@scarf/scarf",
72+
"dtrace-provider"
6573
]
6674
}
6775
}

0 commit comments

Comments
 (0)