aeonshift commited on
Commit
a4cc827
·
verified ·
1 Parent(s): 85a0fe9

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -2,11 +2,11 @@ FROM python:3.10-slim
2
 
3
  WORKDIR /app
4
 
5
- # Install Python dependencies for @rashidazarang/airtable-mcp
6
- RUN pip install @rashidazarang/airtable-mcp requests aiohttp
7
 
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 @rashidazarang.airtable_mcp"]
 
2
 
3
  WORKDIR /app
4
 
5
+ # Install Python dependencies
6
+ RUN pip install requests aiohttp mcp
7
 
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 mcp.server.airtable_mcp"]