Initial commit: Arr Summary source from server

This commit is contained in:
mattie726 2026-08-25 22:59:31 -07:00 committed by Barely Removable
commit c1e30bc8f0
37 changed files with 11661 additions and 0 deletions

16
Dockerfile Normal file
View file

@ -0,0 +1,16 @@
FROM python:3.12-slim
LABEL net.unraid.docker.icon="https://static.wikia.nocookie.net/community-sitcom/images/e/eb/Greendalelogo.png/revision/latest?cb=20120321140817"
LABEL net.unraid.docker.webui="http://[IP]:[PORT:5000]/"
LABEL maintainer="Greendale Media Centre"
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 5000
CMD ["gunicorn", "--config=gunicorn.conf.py", "app:app"]