Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .

RUN AUTH_SECRET=pic-impact export NODE_OPTIONS=--openssl-legacy-provider && npm install -g corepack@latest && corepack enable pnpm && pnpm run prisma:generate && pnpm run build
RUN AUTH_SECRET=pic-impact export NODE_OPTIONS=--openssl-legacy-provider && npm install -g corepack@latest && corepack enable pnpm && pnpm run prisma:generate && NEXT_TEST_USE_RSPACK=1 NEXT_RSPACK=1 pnpm run build

FROM base AS runner

Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"@aws-sdk/client-s3": "^3.750.0",
"@hono/node-server": "^1.13.8",
"@hookform/resolvers": "^3.10.0",
"@next/plugin-rspack": "^15.2.0",
"@prisma/client": "5.22.0",
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-avatar": "^1.1.3",
Expand All @@ -43,6 +44,7 @@
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "^1.1.8",
"@rspack/core": "^1.2.6",
"antd": "^5.24.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
Expand All @@ -59,7 +61,7 @@
"input-otp": "^1.4.2",
"livephotoskit": "^1.5.6",
"lucide-react": "^0.475.0",
"next": "^15.1.7",
"next": "^15.2.0",
"next-auth": "5.0.0-beta.25",
"next-intl": "^3.26.5",
"next-nprogress-bar": "^2.4.7",
Expand Down
Loading