nsl / Dockerfile
hanxuan's picture
XxxX
e5043e6 verified
# 使用Node.js基础镜像
FROM node:alpine
# 设置大陆时区
ENV TZ Asia/Shanghai
# 设置工作目录
WORKDIR /XxxX
# 安装主程序
COPY . .
# 安装依赖
RUN npm install -g pnpm
RUN pnpm install
# 赋予权限/归递
RUN chmod -R 777 /tmp
RUN chmod -R 777 /XxxX
# 启动!
CMD ["node", "app.js"]