HackerBol commited on
Commit
a6ec6ce
·
verified ·
1 Parent(s): 9613270

Upload Dockerfile with huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -26,6 +26,9 @@ RUN pip install --no-cache-dir pip -U && \
26
  RUN pip install --no-cache-dir -r requirements.txt \
27
  gradio[oauth]==4.44.1 "uvicorn>=0.14.0" "websockets>=10.4" spaces
28
 
 
 
 
29
  # Install Playwright browsers
30
  RUN playwright install chromium
31
  RUN playwright install-deps chromium || true
 
26
  RUN pip install --no-cache-dir -r requirements.txt \
27
  gradio[oauth]==4.44.1 "uvicorn>=0.14.0" "websockets>=10.4" spaces
28
 
29
+ # Install curl_cffi for Chrome TLS fingerprint spoofing (Signal #51)
30
+ RUN pip install --no-cache-dir curl_cffi
31
+
32
  # Install Playwright browsers
33
  RUN playwright install chromium
34
  RUN playwright install-deps chromium || true