feat: added configuration to run Docker in http mode

This commit is contained in:
Jonas Grieb
2025-12-03 15:14:00 +01:00
parent ea9cf92b2c
commit 8b0694dff1
3 changed files with 20 additions and 4 deletions

View File

@@ -1,5 +1,7 @@
FROM python:3.13-alpine
EXPOSE 8000
# Install package manager
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
@@ -18,4 +20,6 @@ COPY src src
RUN uv sync \
--locked
ENV CORDRA_RUN_MODE=http
CMD ["uv", "run", "cordra-mcp"]