From ff98a16ee02f68d736436e9deb3f83229c74885d Mon Sep 17 00:00:00 2001 From: Ole-Morten Duesund Date: Sun, 29 Mar 2026 19:05:12 +0200 Subject: [PATCH] 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) --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index c216653..9dfb3cf 100644 --- a/Containerfile +++ b/Containerfile @@ -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