From 6390fcee79aa594f61349754aac0d6d14ff7a8ac Mon Sep 17 00:00:00 2001 From: Kristoffer Dalby Date: Wed, 8 Apr 2026 10:30:52 +0000 Subject: [PATCH] Dockerfile: bump tailscale HEAD builder to Go 1.26.2 Tailscale main now requires go >= 1.26.2, so building the HEAD image against golang:1.26.1-alpine fails with: go: go.mod requires go >= 1.26.2 (running go 1.26.1; GOTOOLCHAIN=local) Bump the base image to golang:1.26.2-alpine so `go run ./cmd/hi run` can build the HEAD container locally again. --- Dockerfile.tailscale-HEAD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.tailscale-HEAD b/Dockerfile.tailscale-HEAD index ca8f0c62..4880f54e 100644 --- a/Dockerfile.tailscale-HEAD +++ b/Dockerfile.tailscale-HEAD @@ -4,7 +4,7 @@ # This Dockerfile is more or less lifted from tailscale/tailscale # to ensure a similar build process when testing the HEAD of tailscale. -FROM golang:1.26.1-alpine AS build-env +FROM golang:1.26.2-alpine AS build-env WORKDIR /go/src