mirror of
https://github.com/jiangrui1994/CloudSaver.git
synced 2026-01-10 07:08:46 +08:00
46 lines
938 B
Docker
46 lines
938 B
Docker
# 构建前端项目
|
|
FROM node:18-alpine as frontend-build
|
|
WORKDIR /app
|
|
COPY frontend/package*.json ./
|
|
RUN npm install -g pnpm
|
|
RUN pnpm install
|
|
COPY frontend/ ./
|
|
RUN npm run build
|
|
|
|
# 构建后端项目
|
|
FROM node:18-alpine as backend-build
|
|
WORKDIR /app
|
|
COPY backend/package*.json ./
|
|
RUN npm install -g pnpm
|
|
RUN pnpm install
|
|
COPY backend/ ./
|
|
RUN rm -f database.sqlite
|
|
RUN npm run build
|
|
|
|
# 生产环境镜像
|
|
FROM node:18-alpine
|
|
|
|
# 安装 Nginx
|
|
RUN apk add --no-cache nginx
|
|
|
|
# 设置工作目录
|
|
WORKDIR /app
|
|
|
|
# 复制前端构建产物到 Nginx
|
|
COPY --from=frontend-build /app/dist /usr/share/nginx/html
|
|
|
|
# 复制 Nginx 配置文件
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
|
|
# 复制后端构建产物到生产环境镜像
|
|
COPY --from=backend-build /app /app
|
|
|
|
# 安装生产环境依赖
|
|
RUN npm install --production
|
|
|
|
# 暴露端口
|
|
EXPOSE 8008
|
|
|
|
# 启动 Nginx 和后端服务
|
|
CMD ["sh", "-c", "nginx -g 'daemon off;' & npm run start && wait"]
|