Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -3,12 +3,12 @@ FROM python:3.10-slim
|
|
3 |
WORKDIR /app
|
4 |
|
5 |
# Install Python dependencies
|
6 |
-
RUN pip install requests aiohttp mcp
|
7 |
|
8 |
COPY server.py .
|
9 |
|
10 |
# Expose the port
|
11 |
EXPOSE 7860
|
12 |
|
13 |
-
# Run the
|
14 |
CMD ["python", "server.py"]
|
|
|
3 |
WORKDIR /app
|
4 |
|
5 |
# Install Python dependencies
|
6 |
+
RUN pip install requests aiohttp mcp fastapi uvicorn sse-starlette
|
7 |
|
8 |
COPY server.py .
|
9 |
|
10 |
# Expose the port
|
11 |
EXPOSE 7860
|
12 |
|
13 |
+
# Run the server
|
14 |
CMD ["python", "server.py"]
|