From 2c0d8a8527f826a73cee6310936f078a16f901a4 Mon Sep 17 00:00:00 2001 From: Andre Challier Date: Wed, 27 Mar 2024 14:24:47 +0100 Subject: [PATCH] Fixed wrong position of hooks template --- webhooks-git/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webhooks-git/Dockerfile b/webhooks-git/Dockerfile index 426782e..5d9b099 100644 --- a/webhooks-git/Dockerfile +++ b/webhooks-git/Dockerfile @@ -1,9 +1,9 @@ FROM almir/webhook:latest as build -COPY hooks.json.tmpl /etc/webhook/hooks.json.tmpl 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 hooks.json.tmpl /etc/webhook/hooks.json.tmpl COPY entrypoint.sh /etc/webhook/entrypoint.sh RUN chmod +x /etc/webhook/entrypoint.sh WORKDIR /etc/webhook