This repository has been archived on 2026-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
transmission-queue-optimizer/Dockerfile
2019-07-21 12:00:14 -04:00

10 lines
175 B
Docker

FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY queue-cycle.py ./
CMD [ "python", "./queue-cycle.py" ]