Skip to content
Closed
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Unreleased

### Changed

- **Docker**: Migrate base image from `node:22-slim` (Debian Bookworm) to `node:22-alpine`. Alpine carries no gnutls library and uses OpenSSL directly, removing a class of OS-level package vulnerabilities present in the Debian slim image. Also swaps `npm install` for `npm ci` in the install step for reproducible, lockfile-exact builds.

## 0.12.3 - 2026-06-11

### Changed
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22-slim
FROM node:22-alpine

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

openssl 3.5.6-r0 / Dockerfile.FROM

Total vulnerabilities: 9

Critical: 1 High: 8 Medium: 0 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2026-34182 CRITICAL CRITICAL 9.1 3.5.7-r0 Open
CVE-2026-34181 HIGH HIGH 7.4 3.5.7-r0 Open
CVE-2026-34180 HIGH HIGH 7.5 3.5.7-r0 Open
CVE-2026-34183 HIGH HIGH 7.5 3.5.7-r0 Open
CVE-2026-42764 HIGH HIGH 7.5 3.5.7-r0 Open
CVE-2026-45445 HIGH HIGH 7.5 3.5.7-r0 Open
CVE-2026-9076 HIGH HIGH 7.5 3.5.7-r0 Open
CVE-2026-7383 HIGH HIGH 8.1 3.5.7-r0 Open
CVE-2026-45447 HIGH HIGH 8.8 3.5.7-r0 Open


# Upgrade npm to fix CVE-2026-33750 (brace-expansion < 2.0.3 bundled in npm 10.x)
RUN npm install -g npm@11.16.0
Expand All @@ -10,7 +10,7 @@ WORKDIR /app
COPY package*.json ./

# Install dependencies - completely skip prepare scripts during Docker build
RUN npm install --ignore-scripts
RUN npm ci --ignore-scripts

# Copy the rest of the application
COPY . .
Expand Down
Loading