fix:更新Dockerfile
Some checks failed
develop / develop (push) Has been cancelled

This commit is contained in:
Your Name
2026-04-17 21:56:49 +08:00
parent 246b66a496
commit 32e29674ab

View File

@@ -1,9 +1,9 @@
FROM node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY package*.json yarn.lock ./
RUN yarn install --frozen-lockfile
COPY . .
RUN npm run build
RUN yarn build
FROM nginx:alpine
COPY --from=builder /app/dist /usr/share/nginx/html