OL-LearnPlatform/Dockerfile
2025-07-22 16:51:54 +08:00

11 lines
265 B
Docker

# 使用 node 构建阶段
FROM node:18 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