File size: 399 Bytes
9894216 7b3af6e 9894216 7b3af6e 9894216 7b3af6e 9894216 7b3af6e 9894216 7b3af6e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# 使用 Node.js 的 Alpine 版本
FROM node:lts-alpine
# 暴露端口
EXPOSE 3000
# 设置时区
ENV TZ=Asia/Shanghai
# 设置工作目录
WORKDIR /app
# 安装必要的工具和依赖
RUN apk add --no-cache git yarn tzdata
# 克隆代码到当前目录
RUN git clone https://github.com/Raimbaulty/censor.git .
# 安装项目依赖
RUN yarn install
# 启动应用
CMD ["npm", "run", "start"] |