OpenList / Dockerfile
HuggingFace0920's picture
Update Dockerfile
87e3d51 verified
raw
history blame
1.18 kB
# 使用官方Ubuntu基础镜像
FROM ubuntu:22.04
EXPOSE 5244
# 设置时区
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
echo $TZ > /etc/timezone
# 安装系统依赖
RUN apt-get update && \
apt-get install -y wget tar python3 python3-pip && \
rm -rf /var/lib/apt/lists/*
ENV VIRTUAL_ENV=/opt/venv
RUN python3 -m venv $VIRTUAL_ENV
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
RUN pip install --no-cache-dir huggingface_hub
# 设置工作目录
WORKDIR /OpenList
# 下载并解压 OpenList
RUN wget -q https://github.com/OpenListTeam/OpenList/releases/download/beta/openlist-linux-amd64.tar.gz && \
tar -xzf openlist-linux-amd64.tar.gz && \
find . -type f -name "openlist" -exec mv {} . \; && \
rm -rf openlist-linux-amd64.tar.gz *linux-amd64*
# 创建数据目录并设置权限
RUN mkdir -p /OpenList/data && \
chmod -R 777 /OpenList/data
# 复制并设置脚本权限
COPY sync_data.sh ./
RUN chmod 755 openlist sync_data.sh
# 设置非root用户运行
RUN useradd -m openlistuser && \
chown -R openlistuser:openlistuser /OpenList
USER openlistuser
# 启动服务
CMD ["./sync_data.sh && ./openlist", "server"]