Initial commit: Dockerfile, CI, README

This commit is contained in:
2026-09-13 09:56:07 +02:00
commit f7970692a6
3 changed files with 42 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM alpine:latest
RUN apk add --no-cache \
curl \
docker-cli \
docker-cli-compose && \
wget -O /usr/local/bin/webhook \
https://github.com/adnanh/webhook/releases/download/2.8.2/webhook-linux-amd64 && \
chmod +x /usr/local/bin/webhook
EXPOSE 9000
ENTRYPOINT ["webhook"]