From ed653e6ea9e046c7ccecd80ea9a7bc37ba44d3d4 Mon Sep 17 00:00:00 2001 From: Andre Challier Date: Wed, 27 Mar 2024 14:15:48 +0100 Subject: [PATCH] Made entrypoint script executable --- webhooks-git/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/webhooks-git/Dockerfile b/webhooks-git/Dockerfile index 8865197..357c186 100644 --- a/webhooks-git/Dockerfile +++ b/webhooks-git/Dockerfile @@ -5,6 +5,7 @@ FROM alpine:latest RUN apk --no-cache add git openssh-client bash nano COPY --from=build /usr/local/bin/webhook /usr/local/bin/webhook COPY entrypoint.sh /etc/webhook/entrypoint.sh +RUN chmod +x /etc/webhook/entrypoint.sh WORKDIR /etc/webhook EXPOSE 9000 ENTRYPOINT ["/etc/webhook/entrypoint.sh"] \ No newline at end of file