From 70b13084bc3ec66a57557806ea353bbd3195c681 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 31 Jul 2026 06:11:49 +0000 Subject: [PATCH] chore(docker): bump alpine from 3.20 to 3.24 in /deployments Bumps alpine from 3.20 to 3.24. --- updated-dependencies: - dependency-name: alpine dependency-version: '3.24' dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- deployments/Dockerfile | 2 +- deployments/Dockerfile.action | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deployments/Dockerfile b/deployments/Dockerfile index 4e42d68..c18fbd7 100644 --- a/deployments/Dockerfile +++ b/deployments/Dockerfile @@ -9,7 +9,7 @@ COPY . . RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-s -w -X main.version=${VERSION}" -o codeforge ./cmd/codeforge # Stage 2: Runtime -FROM alpine:3.20 +FROM alpine:3.24 ARG CLAUDE_CODE_VERSION=2.1.215 ARG CODEX_VERSION=0.104.0 # bash: the claude CLI Bash tool refuses to run without a POSIX shell beyond busybox diff --git a/deployments/Dockerfile.action b/deployments/Dockerfile.action index 0aece87..53caf1c 100644 --- a/deployments/Dockerfile.action +++ b/deployments/Dockerfile.action @@ -11,7 +11,7 @@ COPY . . RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-s -w" -o /codeforge-action ./cmd/codeforge-action # Runtime — minimal image with git + Node.js for CLI installation -FROM alpine:3.21 +FROM alpine:3.24 RUN apk add --no-cache git nodejs npm ca-certificates tzdata su-exec bash \ && adduser -D -s /bin/bash -h /home/codeforge codeforge