qbit-maid/Dockerfile

8 lines
184 B
Docker
Raw Permalink Normal View History

2023-06-04 13:05:26 -05:00
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"]