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