apprise-client/Dockerfile
2023-05-16 13:03:53 -05:00

6 lines
202 B
Docker

FROM python:alpine3.18
WORKDIR /
ADD https://git.jbranan.com/jblu/apprise-client/raw/branch/main/apprise-client.py opt
ENV toml_path=''
RUN pip install requests
CMD [ "python", "opt/apprise-client.py" ]