aeonshift commited on
Commit
d44a5a9
·
verified ·
1 Parent(s): a40c2a5

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 directly with environment variables
12
- CMD ["sh", "-c", "AIRTABLE_API_TOKEN=$AIRTABLE_API_TOKEN AIRTABLE_BASE_ID=$AIRTABLE_BASE_ID python -m airtable_mcp"]
 
8
  # Expose the port
9
  EXPOSE 7860
10
 
11
+ # Run the MCP server with explicit port
12
+ CMD ["sh", "-c", "AIRTABLE_API_TOKEN=$AIRTABLE_API_TOKEN AIRTABLE_BASE_ID=$AIRTABLE_BASE_ID python -m airtable_mcp --port 7860"]