summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-07-15 02:44:24 -0500
committerChristian Cleberg <[email protected]>2026-07-15 02:44:24 -0500
commit59359fdda9db92d95aa3a2819e87a61d63f560fd (patch)
treebd9b8dbc522b7b36e05b96335a48ce497b69a614 /Dockerfile
parentbc9c79be7824252f385b9d052595ed8d7460f43f (diff)
downloadskunky-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-xDockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index fdc1919..719eab6 100755
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-ARG GO_VERSION=1.18
+ARG GO_VERSION=1.25
FROM --platform=$BUILDPLATFORM golang:${GO_VERSION} AS build
ARG TARGETOS