Spaces:
BG5
/
Runtime error

File size: 987 Bytes
a4cd8b1
3eb55b1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a4cd8b1
3eb55b1
 
 
 
 
a4cd8b1
3eb55b1
a4cd8b1
3eb55b1
 
a4cd8b1
3eb55b1
a4cd8b1
3eb55b1
 
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
FROM python:3.12
# 安装 Chrome 和必要的依赖
RUN apt-get update && apt-get install -y \
    wget \
    gnupg \
    && wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
    && echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list \
    && apt-get update && apt-get install -y \
    google-chrome-stable \
    fonts-ipafont-gothic \
    fonts-wqy-zenhei \
    fonts-thai-tlwg \
    fonts-khmeros \
    fonts-freefont-ttf \
    libxss1 \
    --no-install-recommends \
    && rm -rf /var/lib/apt/lists/*

# 验证 Chrome 版本
RUN google-chrome --version
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"

WORKDIR /app

COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt

COPY --chown=user . /app
EXPOSE 7860
# 设置默认命令(可根据需要修改)
CMD ["sh", "-c", "python app.py"]