File size: 441 Bytes
5069ceb
 
4cd3f9c
 
 
5069ceb
 
 
 
4cd3f9c
 
5069ceb
4cd3f9c
5069ceb
 
4cd3f9c
 
 
 
5069ceb
 
4cd3f9c
 
 
5069ceb
 
4cd3f9c
 
5069ceb
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
FROM python:3.12

# 创建一个非根用户
RUN useradd -m appuser

WORKDIR /app

COPY . .

# 更改工作目录的所有者为新用户
RUN chown -R appuser:appuser /app

# 安装必要的库
RUN apt-get update && apt-get install -y libgl1

# 设置 Hugging Face 缓存目录
ENV HF_HOME="/app/hf_cache"

# 安装 Python 包
RUN pip install .

# 切换到非根用户
USER appuser

EXPOSE 7860

ENV PYTHONUNBUFFERED=1

CMD ["pdf2zh", "-i"]