From 0133be26ed198038ef0bd815c70bc76cb86d9ec3 Mon Sep 17 00:00:00 2001 From: Andre Challier Date: Wed, 27 Mar 2024 14:22:33 +0100 Subject: [PATCH] Fixed wrong naming of template hooks --- webhooks-git/Dockerfile | 2 +- webhooks-git/{hooks.json.example => hooks.json.tmpl} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename webhooks-git/{hooks.json.example => hooks.json.tmpl} (100%) diff --git a/webhooks-git/Dockerfile b/webhooks-git/Dockerfile index c4daad1..426782e 100644 --- a/webhooks-git/Dockerfile +++ b/webhooks-git/Dockerfile @@ -1,5 +1,5 @@ FROM almir/webhook:latest as build -COPY hooks.json.example /etc/webhook/hooks.json +COPY hooks.json.tmpl /etc/webhook/hooks.json.tmpl FROM alpine:latest RUN apk --no-cache add git openssh-client bash nano diff --git a/webhooks-git/hooks.json.example b/webhooks-git/hooks.json.tmpl similarity index 100% rename from webhooks-git/hooks.json.example rename to webhooks-git/hooks.json.tmpl