Spaces:
Runtime error
Runtime error
Upload folder using huggingface_hub
Browse files- 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
|
| 15 |
-
RUN pip install --no-cache-dir
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
|