diff options
| author | Christian Cleberg <[email protected]> | 2026-07-15 02:44:24 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-07-15 02:44:24 -0500 |
| commit | 59359fdda9db92d95aa3a2819e87a61d63f560fd (patch) | |
| tree | bd9b8dbc522b7b36e05b96335a48ce497b69a614 /Dockerfile | |
| parent | bc9c79be7824252f385b9d052595ed8d7460f43f (diff) | |
| download | skunky-art-59359fdda9db92d95aa3a2819e87a61d63f560fd.tar.gz skunky-art-59359fdda9db92d95aa3a2819e87a61d63f560fd.tar.bz2 skunky-art-59359fdda9db92d95aa3a2819e87a61d63f560fd.zip | |
build: bump builder image to Go 1.25
go.mod requires go 1.25.0, but the Dockerfile still pinned the builder to
1.18, which cannot parse a three-part version string and failed with
"invalid go version '1.25.0': must match format 1.23".
Track the 1.25 tag rather than a patch release so the builder does not
drift out of date again.
Diffstat (limited to 'Dockerfile')
| -rwxr-xr-x | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,4 +1,4 @@ -ARG GO_VERSION=1.18 +ARG GO_VERSION=1.25 FROM --platform=$BUILDPLATFORM golang:${GO_VERSION} AS build ARG TARGETOS |
