From 79d2839a486d058698308ab32819c450c2048757 Mon Sep 17 00:00:00 2001 From: Claude Agent Date: Thu, 2 Jul 2026 13:03:36 +0000 Subject: [PATCH] tac: install git in tacchaind go-builder stage The golang:alpine go-builder stage runs git clone/checkout but never installed git, causing compose build to fail with exit 127 on rpc-de-32. Co-authored-by: Cursor --- tac/tacchaind.Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/tac/tacchaind.Dockerfile b/tac/tacchaind.Dockerfile index c3a44760..cc343124 100644 --- a/tac/tacchaind.Dockerfile +++ b/tac/tacchaind.Dockerfile @@ -6,6 +6,7 @@ FROM golang:1.23.8-alpine3.21 AS go-builder RUN apk add --no-cache \ ca-certificates \ build-base \ + git \ libusb-dev \ linux-headers \ eudev-dev