From fc9f82ec488cc668c3fb33b0e7a52f5524f0059b Mon Sep 17 00:00:00 2001 From: Claude Agent Date: Tue, 25 Aug 2026 03:40:27 +0000 Subject: [PATCH] tac: fix crash-loop by installing GNU sed for sed command compatibility The TAC mainnet container was crash-looping with 'sed: unsupported command ^' because busybox sed in Alpine does not support the GNU sed extensions used in the cometbft-common.sh scripts (address ranges with ^ anchor and {} grouping). Adding the 'sed' package installs GNU sed which supports these features. Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe --- tac/tacchaind.Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tac/tacchaind.Dockerfile b/tac/tacchaind.Dockerfile index 2426eb0b..c26c7352 100644 --- a/tac/tacchaind.Dockerfile +++ b/tac/tacchaind.Dockerfile @@ -8,7 +8,8 @@ RUN apk upgrade --no-cache && \ apk add --no-cache \ ca-certificates \ curl \ - libusb + libusb \ + sed # Download binary and checksums ARG VERSION