File size: 309 Bytes
cb7b201 467f99e cb7b201 467f99e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | FROM openlistteam/openlist:beta-aio
WORKDIR /opt/openlist
USER root
RUN mkdir -p /opt/openlist/data
# 复制启动脚本并赋予执行权限
COPY entrypoint.sh /opt/openlist/
RUN chmod +x /opt/openlist/entrypoint.sh
EXPOSE 7860
# 用启动脚本作为入口点
ENTRYPOINT ["/opt/openlist/entrypoint.sh"] |