11 lines
265 B
Docker
11 lines
265 B
Docker
# 使用 node 构建阶段
|
|
FROM node:22 AS builder
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN npm install && npm run build
|
|
|
|
# 使用 nginx 作为生产环境
|
|
FROM nginx:stable-alpine
|
|
COPY --from=builder /app/dist /usr/share/nginx/html
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|