From 73b65dbbc94198a116282060940e8c9464fbba3e Mon Sep 17 00:00:00 2001 From: Claude Agent Date: Thu, 2 Jul 2026 13:22:14 +0000 Subject: [PATCH] tac: re-declare ARG VERSION in tacchaind go-builder stage Pre-FROM ARG VERSION is not visible inside build stages; compose passes VERSION as a build arg but git checkout expanded empty without a stage-level re-declaration. Co-authored-by: Cursor --- tac/tacchaind.Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tac/tacchaind.Dockerfile b/tac/tacchaind.Dockerfile index cc343124..d3e19fbc 100644 --- a/tac/tacchaind.Dockerfile +++ b/tac/tacchaind.Dockerfile @@ -3,6 +3,8 @@ ARG VERSION=v1.6.0 FROM golang:1.23.8-alpine3.21 AS go-builder +ARG VERSION + RUN apk add --no-cache \ ca-certificates \ build-base \