This commit is contained in:
2026-07-06 10:46:11 +03:00
parent 5ec3cb4ab4
commit 333a4c592d
2 changed files with 8 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
FROM python:3.12-slim
WORKDIR /app
COPY pyproject.toml ./
RUN pip install --no-cache-dir -e ".[http]"
COPY . .
CMD ["owa-mcp"]