Tsitsi19 commited on
Commit
87918f8
·
verified ·
1 Parent(s): e0794fd

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +37 -2
Dockerfile CHANGED
@@ -11,8 +11,43 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
11
  # Copie des fichiers
12
  COPY . .
13
 
14
- # Installation directe des dépendances essentielles
15
- RUN pip install --no-cache-dir gradio pydantic openai tenacity pyyaml loguru numpy datasets fastapi uvicorn tiktoken html2text gymnasium pillow browsergym unidiff browser-use googlesearch-python baidusearch duckduckgo_search aiofiles colorama mcp httpx tomli boto3 requests beautifulsoup4 crawl4ai huggingface-hub setuptools docker
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  # Port par défaut
18
  EXPOSE 7860
 
11
  # Copie des fichiers
12
  COPY . .
13
 
14
+ # Installation directe de TOUTES les dépendances nécessaires
15
+ RUN pip install --no-cache-dir \
16
+ gradio \
17
+ pydantic \
18
+ openai \
19
+ tenacity \
20
+ pyyaml \
21
+ loguru \
22
+ numpy \
23
+ datasets \
24
+ fastapi \
25
+ uvicorn \
26
+ tiktoken \
27
+ html2text \
28
+ gymnasium \
29
+ pillow \
30
+ browsergym \
31
+ unidiff \
32
+ browser-use \
33
+ googlesearch-python \
34
+ baidusearch \
35
+ duckduckgo_search \
36
+ aiofiles \
37
+ colorama \
38
+ mcp \
39
+ httpx \
40
+ tomli \
41
+ boto3 \
42
+ requests \
43
+ beautifulsoup4 \
44
+ crawl4ai \
45
+ huggingface-hub \
46
+ setuptools \
47
+ docker \
48
+ structlog \
49
+ python-dotenv \
50
+ google-generativeai
51
 
52
  # Port par défaut
53
  EXPOSE 7860