1 Star 0 Fork 8

苏时/serverMmon

forked from MICE/serverMmon 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 392 Bytes
一键复制 编辑 原始数据 按行查看 历史
suiyue 提交于 2023-03-21 17:57 . 更新docker部署文件
FROM node:16.19-alpine3.16 AS builder
WORKDIR /Mmon
COPY package*.json ./
RUN npm install --production
FROM node:16.19-alpine3.16
ENV MMON_DIR=/Mmon
WORKDIR ${MMON_DIR}
COPY --from=builder /Mmon/node_modules ${MMON_DIR}/node_modules
COPY . ${MMON_DIR}
RUN npm install -g pm2
EXPOSE 5999
#CMD pm2-runtime start index.js --name "serverMmon"
ENTRYPOINT ["sh", "docker-entrypoint.sh"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lyibin/serverMmon.git
git@gitee.com:lyibin/serverMmon.git
lyibin
serverMmon
serverMmon
main

搜索帮助