File size: 460 Bytes
36c0b3f 4abdfdb 36c0b3f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
FROM node:14
# 安装git, wget, python等基本工具
RUN apt-get update && apt-get install -y git wget python3 python3-pip
# 克隆青龙仓库
RUN git clone -b main <https://github.com/whyour/qinglong.git> /qinglong
WORKDIR /qinglong
# 安装pm2
RUN npm install pm2 -g
# 安装依赖
RUN npm install --production
# 复制配置文件示例,如果有自定义配置可以修改
COPY .env.example .env
# 启动面板
CMD ["pm2-runtime", "start", "pm2.json"]
|