diff --git a/.tool-versions b/.tool-versions index e0e7af1..1b4a789 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1 +1 @@ -golang 1.24.6 +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