1 Star 0 Fork 0

浮名半生/nest-ea

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 992 Bytes
一键复制 编辑 原始数据 按行查看 历史
浮名半生 提交于 2024-12-06 17:08 . fix:修复docker-compose.yml
# 构建阶段
FROM node:20-alpine3.19 AS builder
# 配置环境变量
ENV NODE_ENV=prod
# 设置 npm 镜像源
RUN npm config set registry https://registry.npmmirror.com/
# 安装 pnpm 并设置 pnpm 镜像源
RUN npm install -g pnpm@latest && pnpm config set registry https://registry.npmmirror.com/
WORKDIR /nest-ea
# 复制 package.json 和 pnpm-lock.yaml
COPY package.json pnpm-lock.yaml ./
# 使用 pnpm 安装依赖
RUN pnpm install --frozen-lockfile
# 复制所有源代码并构建应用
COPY . .
RUN pnpm run build
# 生产阶段
FROM node:20-alpine3.19 AS runner
WORKDIR /nest-ea
# 设置 npm 镜像源
RUN npm config set registry https://registry.npmmirror.com/
RUN npm install -g pnpm@latest
# 从构建阶段复制构建结果和依赖
COPY --from=builder /nest-ea/dist /nest-ea/dist
COPY --from=builder /nest-ea/node_modules /nest-ea/node_modules
COPY --from=builder /nest-ea/.env.prod /nest-ea/.env.prod
# 暴露端口
EXPOSE 3002
CMD [ "node", "dist/src/main.js" ]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fuming1/nest-ea.git
git@gitee.com:fuming1/nest-ea.git
fuming1
nest-ea
nest-ea
master

搜索帮助