mirror of
https://github.com/invariantlabs-ai/invariant-gateway.git
synced 2026-07-25 11:30:52 +02:00
11 lines
338 B
Docker
11 lines
338 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy the messenger server code
|
|
COPY tests/integration/resources/mcp/sse/messenger_server /app/messenger_server
|
|
|
|
# Install dependencies
|
|
RUN pip install --no-cache-dir "uvicorn[standard]" "httpx" "mcp[cli]" "starlette"
|
|
|
|
CMD ["python", "messenger_server/main.py", "--host", "0.0.0.0", "--port", "8123"] |