MCP server source

This commit is contained in:
root
2026-07-15 17:53:11 -04:00
commit 6f36d6f5a2
3 changed files with 112 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM python:3.13-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
curl ca-certificates && rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
RUN python3 -m playwright install chromium
RUN python3 -m playwright install-deps chromium
COPY server.py ./
ENV PYTHONUNBUFFERED=1
EXPOSE 8901
CMD ["python3", "server.py"]