Files
qbit-maid/Dockerfile
2026-04-08 19:10:04 -05:00

6 lines
162 B
Docker
Executable File

FROM python:alpine3.23
WORKDIR /
COPY *.py entrypoint.sh /opt/
RUN pip install requests qbittorrent-api
RUN chmod +x /opt/entrypoint.sh
CMD ["/opt/entrypoint.sh"]