1 Star 0 Fork 7

liming/HivisionIDPhotos

forked from 林泽毅/HivisionIDPhotos 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 452 Bytes
一键复制 编辑 原始数据 按行查看 历史
林泽毅 提交于 2024-09-24 05:48 . refactor: dockerfile
FROM python:3.10-slim
# Install system dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
ffmpeg \
libgl1-mesa-glx \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt requirements-app.txt ./
RUN pip install --no-cache-dir -r requirements.txt -r requirements-app.txt
COPY . .
EXPOSE 7860
EXPOSE 8080
CMD ["python3", "-u", "app.py", "--host", "0.0.0.0", "--port", "7860"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/liming11108/HivisionIDPhotos.git
[email protected]:liming11108/HivisionIDPhotos.git
liming11108
HivisionIDPhotos
HivisionIDPhotos
master

搜索帮助