mirror of
https://github.com/RiffSphere/Collectarr.git
synced 2025-12-16 18:14:11 -06:00
10 lines
244 B
Docker
10 lines
244 B
Docker
FROM python:3.7-alpine
|
|
WORKDIR /app
|
|
RUN apk add --no-cache git
|
|
RUN git clone -b main https://github.com/RiffSphere/Collectarr /app
|
|
RUN pip install -r requirements.txt
|
|
CMD sh /app/folders.sh && python /app/collectarr.py /config
|
|
|
|
VOLUME /config
|
|
|