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
2 changes: 1 addition & 1 deletion deployments/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion deployments/Dockerfile.action
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading