From cb9a5bfe6a25a1538ee637d8bd4e1c9e0652f01b Mon Sep 17 00:00:00 2001 From: Nguyen Thanh Quang Date: Sun, 24 Dec 2023 21:36:22 +0700 Subject: [PATCH] :construction_worker: install `git` to properly inject manifests --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 410f1c1..e702a3e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ ARG TARGETARCH ENV CGO_ENABLED=0 -RUN apk add --no-cache make +RUN apk add --no-cache make git COPY go.mod go.sum ./ RUN go mod download