Initial
All checks were successful
Release / Create Release (push) Successful in 15s
Release / Print Release (push) Successful in 3s

This commit is contained in:
2025-03-23 20:45:06 +00:00
commit 162f57b2ff
8 changed files with 210 additions and 0 deletions

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM python:3.11-slim
LABEL maintainer="Luke Tainton <luke@tainton.uk>"
WORKDIR /home
COPY . .
RUN pip install requests
ENTRYPOINT ["python3", "/home/pushover.py"]