because I got bored of customising my CV for every job
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(CVG-29): generate Prisma client in prod stage for correct module resolution

+2 -2
+2 -2
.docker/server.Dockerfile
··· 93 93 94 94 RUN pnpm install --frozen-lockfile --prod 95 95 96 - # Copy Prisma schema, config, and generated client 96 + # Copy Prisma schema + config, generate client in prod context 97 97 COPY apps/server/prisma/ ./apps/server/prisma/ 98 98 COPY apps/server/prisma.config.ts ./apps/server/prisma.config.ts 99 - COPY --from=builder /app/node_modules/.prisma/ ./node_modules/.prisma/ 99 + RUN cd apps/server && npx prisma generate 100 100 101 101 # Copy bundled output (single file, @cv/* packages inlined) 102 102 COPY --from=builder /app/apps/server/dist/ ./apps/server/dist/