From ad7a69616b2b64a8861582024063d828f0feb90e Mon Sep 17 00:00:00 2001 From: Antoine Toussaint Date: Sun, 23 Aug 2026 13:31:10 -0400 Subject: [PATCH] fix(companions): bump Go companion to Go 1.27 image (#341) FROM golang:1.27-alpine and version 0.0.11 so golang.CompanionImage() resolves to the already-published codeflydev/go:0.0.11. Under the old Go 1.26.4 toolchain, container builds of services on go 1.27.0 failed with "toolchain not available". Co-Authored-By: Claude Opus 4.8 --- companions/go/Dockerfile | 2 +- companions/go/info.codefly.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/companions/go/Dockerfile b/companions/go/Dockerfile index 1fdd3535..a66cbef8 100644 --- a/companions/go/Dockerfile +++ b/companions/go/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.26-alpine +FROM golang:1.27-alpine # Dev toolbox kept minimal (Go agent only uses git for go-module fetches # and a shell for diagnostics). Language companions share the same diff --git a/companions/go/info.codefly.yaml b/companions/go/info.codefly.yaml index 2ca00da4..9555a667 100644 --- a/companions/go/info.codefly.yaml +++ b/companions/go/info.codefly.yaml @@ -1 +1 @@ -version: 0.0.10 +version: 0.0.11