qbit-maid/Dockerfile

8 lines
194 B
Docker
Raw Permalink Normal View History

2023-06-04 13:05:26 -05:00
FROM python:alpine3.18
WORKDIR /
COPY . opt
2023-06-23 04:02:05 -05:00
RUN apk add --no-cache supercronic
2023-06-04 13:05:26 -05:00
RUN pip install requests
RUN pip install qbittorrent-api
RUN chmod +x /opt/entrypoint.sh
CMD ["/opt/entrypoint.sh"]