fix: update Containerfile to Go 1.26 matching go.mod
The Containerfile referenced golang:1.23 but go.mod requires 1.26.1. Verified end-to-end: image builds, health check works, all routes respond, API login succeeds, version flag shows 0.1.0. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
a64d0c5dff
commit
ff98a16ee0
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@
|
|||
# --build-arg GIT_REVISION="$(git describe --always --dirty)" \
|
||||
# -t favoritter .
|
||||
|
||||
FROM docker.io/library/golang:1.23-bookworm AS builder
|
||||
FROM docker.io/library/golang:1.26-bookworm AS builder
|
||||
WORKDIR /src
|
||||
COPY go.mod go.sum ./
|
||||
RUN go mod download
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue