diff --git a/go.Dockerfile b/go.Dockerfile index 02215516..1e62e5fb 100644 --- a/go.Dockerfile +++ b/go.Dockerfile @@ -3,7 +3,7 @@ # -> Why static linking? We want to ensure we can switch base-image with little to no effort. # 2. It builds a running environment. This is the environment that exists for the Go binary, and should have all necessary pieces to run the application. -FROM golang:1.24.6-alpine AS app +FROM golang:1.25.3-alpine AS app RUN apk add --no-cache git diff --git a/go.mod b/go.mod index e0a1e47c..e9e9cfb1 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/grafana/grafana-image-renderer -go 1.24.6 +go 1.25.3 require ( github.com/Masterminds/semver/v3 v3.4.0