mcsm / Dockerfile
xtname
Upload 2 files
ea5d900 verified
raw
history blame
304 Bytes
FROM node
# 设置大陆时区
ENV TZ Asia/Shanghai
# 设置工作目录
WORKDIR ./xiaotian
# 安装所需工具
RUN apt update
RUN apt install -y default-jdk procps python3 unzip curl jq
COPY . .
# 赋予权限归递
RUN chmod -R 777 /tmp
RUN chmod -R 777 ./xiaotian
# 启动!
CMD bash ./start.sh