From a36582be705cbe56f98e323dd507e1fd2ff426ef Mon Sep 17 00:00:00 2001 From: Marc Singer Date: Sun, 15 Feb 2026 20:37:20 +0100 Subject: [PATCH] fix: remove git package install from docker image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8f826c9..d775442 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,5 @@ FROM golang:1.25.7 AS build -RUN apk add --no-cache git - WORKDIR /workspace COPY . . @@ -16,4 +14,6 @@ RUN apk add --no-cache ca-certificates COPY --from=build /workspace/webhook /usr/local/bin/webhook +RUN chmod +x /usr/local/bin/webhook + ENTRYPOINT ["webhook"]