refactor: uv-based deps, no nexus auth, LLM retries, lock cleanup, health checks, e2e tests

This commit is contained in:
Marker689
2026-05-11 19:27:56 +03:00
parent 698f02c8af
commit 04abe44ab4
20 changed files with 1583 additions and 51 deletions

View File

@@ -7,13 +7,12 @@ COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /usr/local/bin/
WORKDIR /app
COPY pyproject.toml ./
RUN grep -A20 'dependencies = \[' pyproject.toml | grep '"' | sed 's/[",]//g' | xargs uv pip install --system
RUN uv pip install --system guarddog
COPY pyproject.toml README.md ./
COPY guarddog_nexus/ guarddog_nexus/
RUN uv pip install . --system
RUN uv pip install --system guarddog
RUN mkdir -p /data /tmp/guarddog-nexus
ENV DATABASE_PATH=/data/guarddog.db