alertmanager-gotify-bridge: initial commit with bridge and CI
Some checks failed
ci/woodpecker/tag/woodpecker Pipeline failed

This commit is contained in:
Oleks
2026-03-16 17:26:06 +02:00
commit 4c7dcd9279
3 changed files with 115 additions and 0 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM python:3.12-alpine
COPY bridge.py /app/bridge.py
WORKDIR /app
EXPOSE 8080
CMD ["python", "bridge.py"]