Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -248,3 +248,4 @@ tmp/
# Integration test snapshot — personal to each developer's local input/ PDFs.
# Never commit updates; the copy on main is kept only as a reference baseline.
packages/parser-core/tests/integration/snapshots/output_snapshot.json
.worktrees/
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,11 @@ RUN python -c "import sysconfig; print(sysconfig.get_path('purelib'))" | xargs -
FROM base AS production

# hadolint ignore=DL3008
RUN apt-get update && apt-get install -y --no-install-recommends \
RUN apt-get update && apt-get upgrade -y --no-install-recommends && apt-get install -y --no-install-recommends \
poppler-utils \
&& rm -rf /var/lib/apt/lists/*
# poppler-utils is runtime-critical; pinning not practical. Mitigated by Trivy CI gate.
# apt-get upgrade ensures OS packages (e.g. openssl) are patched at build time (CVE-2026-31789).

RUN groupadd -r appuser && useradd -r -g appuser -u 1000 appuser

Expand Down