apprise-client/Dockerfile

6 lines
201 B
Docker
Raw Normal View History

2023-05-16 12:38:40 -05:00
FROM python:alpine3.18
WORKDIR /
2023-05-16 13:03:53 -05:00
ADD https://git.jbranan.com/jblu/apprise-client/raw/branch/main/apprise-client.py opt
2023-05-16 17:22:26 -05:00
ENV DOCKER=true
2023-05-16 12:38:40 -05:00
RUN pip install requests
CMD [ "python", "opt/apprise-client.py" ]