added docker support

This commit is contained in:
2023-06-04 13:05:26 -05:00
parent 03648f9ae2
commit 8520933f8d
17 changed files with 198 additions and 4 deletions

8
Dockerfile Executable file
View File

@ -0,0 +1,8 @@
FROM python:alpine3.18
WORKDIR /
COPY . opt
RUN pip install requests
RUN pip install qbittorrent-api
RUN crontab /opt/crontab
RUN chmod +x /opt/entrypoint.sh
CMD ["/opt/entrypoint.sh"]