aeonshift commited on
Commit
d61f5c3
·
verified ·
1 Parent(s): 16e7ab5

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 port
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"]