Files
Collectarr/Dockerfile
2021-08-07 20:46:41 +02:00

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