From f2dd0e8d6da55fa044db30312a9549fefe7a03f9 Mon Sep 17 00:00:00 2001 From: anthonyrawlins Date: Fri, 1 Aug 2025 10:04:36 +1000 Subject: [PATCH] fix: Docker and import issues for CHORUS integration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update Dockerfile to use Go 1.23 (was 1.21) - Add missing config package imports to executor, github integration, and sandbox modules - These fixes enable proper build for CHORUS Services Docker integration 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- Dockerfile | 2 +- executor/executor.go | 1 + github/integration.go | 1 + sandbox/sandbox.go | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5b3185ca..7da785ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.21-alpine AS builder +FROM golang:1.23-alpine AS builder WORKDIR /app COPY go.mod go.sum ./ diff --git a/executor/executor.go b/executor/executor.go index 56d7cc59..adb1e80c 100644 --- a/executor/executor.go +++ b/executor/executor.go @@ -6,6 +6,7 @@ import ( "strings" "github.com/anthonyrawlins/bzzz/logging" + "github.com/anthonyrawlins/bzzz/pkg/config" "github.com/anthonyrawlins/bzzz/pkg/types" "github.com/anthonyrawlins/bzzz/reasoning" "github.com/anthonyrawlins/bzzz/sandbox" diff --git a/github/integration.go b/github/integration.go index 55059eff..07cb377e 100644 --- a/github/integration.go +++ b/github/integration.go @@ -9,6 +9,7 @@ import ( "github.com/anthonyrawlins/bzzz/executor" "github.com/anthonyrawlins/bzzz/logging" + "github.com/anthonyrawlins/bzzz/pkg/config" "github.com/anthonyrawlins/bzzz/pkg/hive" "github.com/anthonyrawlins/bzzz/pkg/types" "github.com/anthonyrawlins/bzzz/pubsub" diff --git a/sandbox/sandbox.go b/sandbox/sandbox.go index 7a1a0620..a1fd0f9b 100644 --- a/sandbox/sandbox.go +++ b/sandbox/sandbox.go @@ -10,6 +10,7 @@ import ( "path/filepath" "strings" + "github.com/anthonyrawlins/bzzz/pkg/config" "github.com/docker/docker/api/types/container" "github.com/docker/docker/client" "github.com/docker/docker/pkg/stdcopy"