fix: remove git package install from docker image

This commit is contained in:
Marc Singer 2026-02-15 20:37:20 +01:00
parent b65f07ae47
commit a36582be70

View file

@ -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"]