Files
pushover-action/Dockerfile
renovate[bot] 1ffa7f927b
Some checks failed
Conventional Commit / validate_pr_title (pull_request) Failing after 4s
Release / Create Release (push) Successful in 1m3s
Release / Print Release (push) Successful in 5s
Update python Docker tag to v3.14
2025-10-07 21:46:12 +00:00

7 lines
164 B
Docker

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