TheSmallHanCat commited on
Commit
a374db7
·
1 Parent(s): d4d6046

fix: docker构建

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -25,8 +25,8 @@ RUN apt-get update && apt-get install -y \
25
  COPY requirements.txt .
26
  RUN pip install --no-cache-dir -r requirements.txt
27
 
28
- # 安装 Playwright 浏览器(仅 Chromium)
29
- RUN playwright install chromium --with-deps
30
 
31
  COPY . .
32
 
 
25
  COPY requirements.txt .
26
  RUN pip install --no-cache-dir -r requirements.txt
27
 
28
+ # 安装 Playwright 浏览器
29
+ RUN playwright install chromium
30
 
31
  COPY . .
32