代码拉取完成,页面将自动刷新
同步操作将从 lipengfeiSUaz/HivisionIDPhotos 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
FROM ubuntu:22.04
# apt换源,安装pip
RUN echo "==> 换成清华源,并更新..." && \
sed -i s@/archive.ubuntu.com/@/mirrors.tuna.tsinghua.edu.cn/@g /etc/apt/sources.list && \
sed -i s@/security.ubuntu.com/@/mirrors.tuna.tsinghua.edu.cn/@g /etc/apt/sources.list && \
apt-get clean && \
apt-get update
# 安装python3.10
RUN apt-get install -y python3 curl && \
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
python3 get-pip.py && \
pip3 install -U pip && \
pip3 config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
# 安装ffmpeg等库
RUN apt-get install libpython3.10-dev ffmpeg libgl1-mesa-glx libglib2.0-0 cmake -y && \
pip3 install --no-cache-dir cmake
WORKDIR /app
COPY . .
RUN pip3 install -r requirements.txt && \
pip3 install -r requirements-app.txt
RUN echo "==> Clean up..." && \
rm -rf ~/.cache/pip
# 指定工作目录
EXPOSE 7860
EXPOSE 8080
CMD [ "python3", "-u", "app.py", "--host", "0.0.0.0", "--port", "7860"]
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。