From 423df3b68d2d095cde347cb62d2fbf43253b804b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mirko=20K=C3=A4mpf?= Date: Fri, 30 Jan 2026 13:38:19 +0100 Subject: [PATCH] fix: install git in iceberg processor build --- addons/processors/iceberg-processor/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/processors/iceberg-processor/Dockerfile b/addons/processors/iceberg-processor/Dockerfile index 7e3369d..6c14a27 100644 --- a/addons/processors/iceberg-processor/Dockerfile +++ b/addons/processors/iceberg-processor/Dockerfile @@ -15,6 +15,7 @@ # limitations under the License. FROM golang:1.25-alpine AS build +RUN apk add --no-cache git WORKDIR /src COPY go.mod go.sum ./ RUN --mount=type=cache,target=/go/pkg/mod \