Initial commit

This commit is contained in:
2026-01-15 15:03:59 +08:00
committed by GitHub
commit f8eda9ba2f
35 changed files with 3212 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM node:20-alpine as builder
WORKDIR /app
COPY . .
RUN corepack enable pnpm
RUN pnpm install
RUN pnpm build
FROM nginx:1.27 as runner
COPY --from=builder /app/dist/ /usr/share/nginx/html/