This commit is contained in:
Sakurasan
2026-07-06 00:01:19 +08:00
parent 8082b0900a
commit 5ebbb8c1ca
2 changed files with 2 additions and 2 deletions
+1 -2
View File
@@ -2,10 +2,9 @@
FROM node:24-alpine AS build
WORKDIR /app
COPY package.json pnpm-lock.yaml .npmrc ./
COPY . .
RUN corepack enable && pnpm install
COPY . .
RUN pnpm build
# ---- Serve stage ----