added docker build file

This commit is contained in:
2023-05-16 12:38:40 -05:00
parent de9107db5f
commit b72bdeffd3
3 changed files with 13 additions and 2 deletions

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM python:alpine3.18
WORKDIR /
COPY apprise-client.py opt
ENV toml_path=''
RUN pip install requests
CMD [ "python", "opt/apprise-client.py" ]