From e173feff3291995586772534109db124d3f5f3d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 15 Aug 2026 05:52:16 +0000 Subject: [PATCH 1/2] chore(deps): bump the all group with 2 updates Bumps the all group with 2 updates: node and alpine. Updates `node` from 22-alpine to 26-alpine Updates `alpine` from 3.21 to 3.24 --- updated-dependencies: - dependency-name: node dependency-version: 26-alpine dependency-type: direct:production dependency-group: all - dependency-name: alpine dependency-version: '3.24' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7440a5c..ebfc48c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # ─── Stage 1: fetch and normalise docs ─────────────────────────────────────── -FROM node:22-alpine AS fetcher +FROM node:26-alpine AS fetcher RUN apk add --no-cache git curl @@ -44,7 +44,7 @@ COPY src/mcp/ ./src/mcp/ RUN bun build --compile src/mcp/main.ts --outfile /docs-mcp # ─── Stage 2: SSH server ────────────────────────────────────────────────────── -FROM alpine:3.21 +FROM alpine:3.24 # Link GHCR package to the repository so GITHUB_TOKEN gets write access LABEL org.opencontainers.image.source=https://github.com/erfianugrah/docs-ssh From f033bf089b47538ec71cb9dcddcddd75c6a4b243 Mon Sep 17 00:00:00 2001 From: Erfi Anugrah Date: Sat, 15 Aug 2026 21:19:45 +0800 Subject: [PATCH 2/2] chore(deps): hold node fetcher image at 22-alpine Repo pins Node 22 (AGENTS.md); node:26 breaks the fetcher stage in E2E docker builds. alpine 3.21 -> 3.24 bump kept. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ebfc48c..7e3267c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # ─── Stage 1: fetch and normalise docs ─────────────────────────────────────── -FROM node:26-alpine AS fetcher +FROM node:22-alpine AS fetcher RUN apk add --no-cache git curl