Initial commit

This commit is contained in:
Chris Coutinho
2025-05-04 23:22:52 +02:00
commit 0d8666a2d7
12 changed files with 1681 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM ghcr.io/astral-sh/uv:python3.11-bookworm
WORKDIR /app
COPY . .
RUN uv sync --locked
ENV VIRTUAL_ENV=/app/.venv
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
ENV FASTMCP_LOG_LEVEL=DEBUG
CMD ["mcp", "run", "--transport", "sse", "nextcloud_mcp_server/server.py:mcp"]