pushover-action/Dockerfile
Renovate [BOT] 9b96af09a3
Some checks failed
Conventional Commit / validate_pr_title (pull_request) Failing after 4s
Release / Create Release (push) Successful in 11s
Release / Print Release (push) Successful in 3s
Update python Docker tag to v3.13
2025-03-23 20:47:15 +00:00

7 lines
164 B
Docker

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