Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -8,5 +8,5 @@ RUN pip install requests aiohttp airtable-mcp
|
|
8 |
# Expose the port
|
9 |
EXPOSE 7860
|
10 |
|
11 |
-
# Run the MCP server with explicit host and
|
12 |
-
CMD ["sh", "-c", "AIRTABLE_API_TOKEN=$AIRTABLE_API_TOKEN AIRTABLE_BASE_ID=$AIRTABLE_BASE_ID python -m airtable_mcp --host 0.0.0.0 --port 7860"]
|
|
|
8 |
# Expose the port
|
9 |
EXPOSE 7860
|
10 |
|
11 |
+
# Run the MCP server with explicit host, port, and foreground mode
|
12 |
+
CMD ["sh", "-c", "AIRTABLE_API_TOKEN=$AIRTABLE_API_TOKEN AIRTABLE_BASE_ID=$AIRTABLE_BASE_ID python -m airtable_mcp --host 0.0.0.0 --port 7860 --foreground"]
|