初始化

This commit is contained in:
yml
2026-06-02 15:31:09 +08:00
commit 3ea0c3db7d
16 changed files with 2832 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM node:24-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
FROM nginx:1.27-alpine
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=builder /app/dist /usr/share/nginx/html