Spaces:
Runtime error
Runtime error
Commit
·
fa64f8c
1
Parent(s):
e3b6875
fix: gradio requirements
Browse files- Dockerfile +1 -1
- requirements.txt +3 -1
Dockerfile
CHANGED
|
@@ -28,7 +28,7 @@ ENV PATH="/home/user/.local/bin:$PATH"
|
|
| 28 |
WORKDIR /app
|
| 29 |
|
| 30 |
COPY --chown=user ./requirements.txt requirements.txt
|
| 31 |
-
RUN pip install gradio[mcp] textblob
|
| 32 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 33 |
|
| 34 |
# Install Playwright browsers
|
|
|
|
| 28 |
WORKDIR /app
|
| 29 |
|
| 30 |
COPY --chown=user ./requirements.txt requirements.txt
|
| 31 |
+
# RUN pip install gradio[mcp] textblob
|
| 32 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 33 |
|
| 34 |
# Install Playwright browsers
|
requirements.txt
CHANGED
|
@@ -13,4 +13,6 @@ newspaper3k==0.2.8
|
|
| 13 |
readability-lxml==0.8.1
|
| 14 |
python-dotenv==1.0.0
|
| 15 |
nltk==3.8.1
|
| 16 |
-
spacy==3.7.2
|
|
|
|
|
|
|
|
|
| 13 |
readability-lxml==0.8.1
|
| 14 |
python-dotenv==1.0.0
|
| 15 |
nltk==3.8.1
|
| 16 |
+
spacy==3.7.2
|
| 17 |
+
gradio[mcp]
|
| 18 |
+
textblob
|