airtable-node-mcp / Dockerfile
aeonshift's picture
Update Dockerfile
09588bc verified
raw
history blame contribute delete
228 Bytes
FROM python:3.10-slim
WORKDIR /app
# Install Python dependencies
RUN pip install requests aiohttp mcp fastapi uvicorn sse-starlette
COPY server.py .
# Expose the port
EXPOSE 7860
# Run the server
CMD ["python", "server.py"]