Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -3,10 +3,10 @@ FROM python:3.10-slim
|
|
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
|
|
|
3 |
WORKDIR /app
|
4 |
|
5 |
# Install Python dependencies
|
6 |
+
RUN pip install requests aiohttp airtable-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 airtable_mcp"]
|