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:
Ole-Morten Duesund 2026-03-29 19:05:12 +02:00
commit ff98a16ee0

View file

@ -4,7 +4,7 @@
# --build-arg GIT_REVISION="$(git describe --always --dirty)" \ # --build-arg GIT_REVISION="$(git describe --always --dirty)" \
# -t favoritter . # -t favoritter .
FROM docker.io/library/golang:1.23-bookworm AS builder FROM docker.io/library/golang:1.26-bookworm AS builder
WORKDIR /src WORKDIR /src
COPY go.mod go.sum ./ COPY go.mod go.sum ./
RUN go mod download RUN go mod download