build: .dockerignore, pin guarddog>=2.10.0, Docker HEALTHCHECK

This commit is contained in:
Marker689
2026-05-11 21:02:38 +03:00
parent 9b98a32216
commit e994e302fc
2 changed files with 19 additions and 1 deletions

15
.dockerignore Normal file
View File

@@ -0,0 +1,15 @@
**/__pycache__
**/.pytest_cache
**/.ruff_cache
**/.mypy_cache
*.pyc
.git
.opencode
.agents
.playwright-mcp
*.png
.env
data/
examples/
scripts/
skills-lock.json

View File

@@ -11,7 +11,7 @@ COPY pyproject.toml README.md ./
COPY guarddog_nexus/ guarddog_nexus/
RUN uv pip install . --system
RUN uv pip install --system guarddog
RUN uv pip install --system "guarddog>=2.10.0"
RUN mkdir -p /data /tmp/guarddog-nexus
@@ -21,4 +21,7 @@ ENV PYTHONDONTWRITEBYTECODE=1
EXPOSE 8080
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
CMD python -c "from urllib.request import urlopen; urlopen('http://localhost:8080/health')"
CMD ["python", "-m", "guarddog_nexus.main"]