FROM node | |
# 设置大陆时区 | |
ENV TZ Asia/Shanghai | |
# 设置工作目录 | |
WORKDIR /XxxX | |
# 安装所需工具 | |
RUN apt update | |
RUN apt install -y default-jdk procps python3 unzip curl jq | |
COPY app.py . | |
# 赋予权限归递 | |
RUN chmod -R 777 /tmp | |
RUN chmod -R 777 /XxxX | |
# 启动! | |
CMD python3 app.py |