From 6bd21af993ec971380c9a3edf0e9710f292178b8 Mon Sep 17 00:00:00 2001 From: Will Dollman Date: Mon, 18 Aug 2025 12:59:33 +0100 Subject: [PATCH] Update to latest golang image and go release --- .tool-versions | 2 +- Dockerfile | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tool-versions b/.tool-versions index 0ae8f29..1b4a789 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1 +1 @@ -golang 1.24.0 +golang 1.25.0 diff --git a/Dockerfile b/Dockerfile index 1cf06ed..dc50e69 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,16 +15,16 @@ # # And use this digest in FROM -ARG base_sha=39d9e7d9c5d9c9e4baf0d8fff579f06d5032c0f4425cdec9e86732e8e4e374dc +ARG base_sha=74908ad827a5849c557eeca81d46263acf788ead606102d83466f499f83e35b1 -FROM golang:1.24.3@sha256:${base_sha} AS builder +FROM golang:1.25.0-bookworm@sha256:${base_sha} AS builder COPY . /sources WORKDIR /sources RUN go build -o scip-go ./cmd/scip-go # Keep in sync with builder image -FROM golang:1.24.3@sha256:${base_sha} AS final +FROM golang:1.25.0-bookworm@sha256:${base_sha} AS final COPY --from=builder /sources/scip-go /usr/bin/ ENV GOTOOLCHAIN=auto