-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
50 lines (37 loc) · 1.03 KB
/
Dockerfile
File metadata and controls
50 lines (37 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
FROM python:3.11-slim
# 安装系统依赖(scenedetect 需要 OpenCV 的图形库)
RUN apt-get update && apt-get install -y \
libgl1 \
libglib2.0-0 \
libsm6 \
libxext6 \
libxrender1 \
&& rm -rf /var/lib/apt/lists/*
# 使用pip安装uv
RUN pip install --no-cache-dir uv
# 验证uv安装
RUN uv --version
# 设置工作目录
WORKDIR /app
# 创建非root用户并提前配置缓存目录
RUN mkdir -p /root/.cache/uv
# 从CI构建的dist目录复制所有文件
COPY dist/ .
# 安装依赖(仍使用root用户确保权限)
RUN uv sync --no-dev --no-cache
# 安装 scenedetect
RUN uv pip install scenedetect
# 安装opencv-python
RUN uv pip install opencv-python
# 清理缓存
RUN uv cache prune
# 暴露应用端口
EXPOSE 60000
# 设置环境变量,指定uv缓存目录和用户主目录
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
PATH="/app/.venv/bin:/app/bin:$PATH" \
HOME="/root" \
UV_CACHE_DIR="/root/.cache/uv"
# 启动命令
CMD ["uv", "run", "main.py", "--workers", "4"]