6 lines
162 B
Docker
Executable File
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"] |