mirror of
https://github.com/ManiMatter/decluttarr.git
synced 2026-04-18 06:54:01 +02:00
Carved out the queue cleaning bits from mirrarr, without taking over the instance synchronization items. Not tested yet.
13 lines
183 B
Docker
13 lines
183 B
Docker
FROM python:3.9-slim-buster
|
|
|
|
ENV IS_IN_DOCKER 1
|
|
|
|
WORKDIR /app
|
|
|
|
COPY docker/requirements.txt ./
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD ["python", "main.py"]
|