Skip to content
Open
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: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# --- Stage 1: Test Runner ---
FROM --platform=$BUILDPLATFORM golang:1.26-bookworm AS tester
FROM --platform=$BUILDPLATFORM golang:1.27-bookworm AS tester

WORKDIR /app

Expand All @@ -11,7 +11,7 @@ RUN go test -v ./...

# --- Stage 2: Builder (Using a Debian-based Go image) ---
# golang:1.22-bullseye is a good choice for a stable build environment
FROM --platform=$BUILDPLATFORM golang:1.26-bookworm AS builder
FROM --platform=$BUILDPLATFORM golang:1.27-bookworm AS builder

# Copy source from the tester stage
COPY --from=tester /app /app
Expand Down
Loading