From 817ee58f40de72807b443568bceeb9c959232e02 Mon Sep 17 00:00:00 2001 From: Pablo Chacin Date: Mon, 22 Jul 2024 11:47:22 +0200 Subject: [PATCH] install git Signed-off-by: Pablo Chacin --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index a39e311..2f05a1f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,6 +15,8 @@ RUN CGO_ENABLED=0 GOBIN=/build go install github.com/boxboat/fixuid@${FIXUID_VER FROM golang:${GO_VERSION}-${VARIANT} +RUN apk update && apk add git + COPY --from=builder /build/fixuid /usr/local/bin/ RUN chown root:root /usr/local/bin/fixuid && \