chore: sync versions, update uv, expand dockerignore

- plugin.json: bump version 0.2.0 → 0.4.0 to match pyproject.toml
- Dockerfile: update uv 0.5.4 → 0.6 (global CLAUDE.md requires 0.10+)
- .dockerignore: exclude tests/, docs/, scripts/, commands/, .full-review/,
  .claude-plugin/, *.md (keep README.md) — reduces image size
This commit is contained in:
Jacob Magar
2026-03-13 03:08:01 -04:00
parent 9aee3a2448
commit cd33ee2dda
3 changed files with 10 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ FROM python:3.12-slim
WORKDIR /app
# Install uv (pinned tag to avoid mutable latest)
COPY --from=ghcr.io/astral-sh/uv:0.5.4 /uv /uvx /usr/local/bin/
COPY --from=ghcr.io/astral-sh/uv:0.6 /uv /uvx /usr/local/bin/
# Create non-root user with home directory and give ownership of /app
RUN groupadd --gid 1000 appuser && \