openlist / Dockerfile
defendex's picture
Update Dockerfile
467f99e verified
raw
history blame contribute delete
309 Bytes
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"]