From 7339d30f33ff8c364652c4f060a332f7202f965f Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Tue, 6 Jan 2026 20:07:29 -0600 Subject: [PATCH] fix: fix goose build --- cubbi/images/goose/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cubbi/images/goose/Dockerfile b/cubbi/images/goose/Dockerfile index c8eb368..f539304 100644 --- a/cubbi/images/goose/Dockerfile +++ b/cubbi/images/goose/Dockerfile @@ -32,7 +32,7 @@ RUN curl -fsSL https://astral.sh/uv/install.sh -o install.sh && \ rm install.sh RUN curl -fsSL https://github.com/block/goose/releases/download/stable/download_cli.sh -o download_cli.sh && \ chmod +x download_cli.sh && \ - ./download_cli.sh && \ + env CONFIGURE=false ./download_cli.sh && \ mv /root/.local/bin/goose /usr/local/bin/goose && \ rm -rf download_cli.sh /tmp/goose-*